diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 21:00:20 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 21:00:20 (GMT) |
commit | 11a52708f7f2223b335734e584e2ba30eae74a5f (patch) | |
tree | 6fc967b121726e1d419f05806ff77ed27d2d5ccd /Lib/distutils | |
parent | c58e98483788b7e55af871eb9ebdbe56a2b3d109 (diff) | |
download | cpython-11a52708f7f2223b335734e584e2ba30eae74a5f.zip cpython-11a52708f7f2223b335734e584e2ba30eae74a5f.tar.gz cpython-11a52708f7f2223b335734e584e2ba30eae74a5f.tar.bz2 |
Make None return explicit
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/build_py.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 388d3cb..0ab72c0 100644 --- a/Lib/distutils/command/build_py.py +++ b/Lib/distutils/command/build_py.py @@ -181,7 +181,7 @@ class build_py (Command): # Either not in a package at all (__init__.py not expected), or # __init__.py doesn't exist -- so don't return the filename. - return + return None # check_package () |