diff options
author | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-18 12:46:24 -0800 |
---|---|---|
committer | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-18 12:57:59 -0800 |
commit | 3b358631e7bf2d43c664aa1f4b3f23db773b3df5 (patch) | |
tree | d4a525e4d608b94de1422c52dd61657378e61a36 /doc | |
parent | ec5bd813061ceb766cf78d04c6d72a80804110e0 (diff) | |
download | numpy-3b358631e7bf2d43c664aa1f4b3f23db773b3df5.tar.gz |
MAINT: Remove redundant trailing semicolons.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/newdtype_example/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/newdtype_example/setup.py b/doc/newdtype_example/setup.py index 2222f0de1..d7ab040a1 100644 --- a/doc/newdtype_example/setup.py +++ b/doc/newdtype_example/setup.py @@ -7,7 +7,7 @@ def configuration(parent_package = '', top_path=None): config = Configuration('floatint', parent_package, top_path) config.add_extension('floatint', - sources = ['floatint.c']); + sources = ['floatint.c']) return config setup(configuration=configuration) |