mirror of
https://github.com/python/cpython.git
synced 2025-08-28 04:35:02 +00:00
Bugs item #1069409 C:\Python24\Lib\compileall.py returns False
* return an integer rather than a boolean
This commit is contained in:
parent
5d01aa4f6a
commit
7b4b788eaa
1 changed files with 1 additions and 1 deletions
|
@ -153,5 +153,5 @@ def main():
|
||||||
return success
|
return success
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
exit_status = not main()
|
exit_status = int(not main())
|
||||||
sys.exit(exit_status)
|
sys.exit(exit_status)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue