mirror of
https://github.com/python/cpython.git
synced 2025-09-28 03:13:48 +00:00
Whitespace normalization, via reindent.py.
This commit is contained in:
parent
182b5aca27
commit
3d7d372ce3
13 changed files with 49 additions and 53 deletions
|
@ -6,4 +6,3 @@ setup(name="noddy", version="1.0",
|
|||
Extension("noddy3", ["noddy3.c"]),
|
||||
Extension("noddy4", ["noddy4.c"]),
|
||||
])
|
||||
|
||||
|
|
|
@ -211,4 +211,3 @@ sys.path.append(src)
|
|||
if __name__ == "__main__":
|
||||
import doctest, __main__
|
||||
doctest.testmod(__main__)
|
||||
|
||||
|
|
|
@ -58,5 +58,3 @@ if __name__ == "__main__":
|
|||
(options, args) = parser.parse_args(["-F", "bar"])
|
||||
assert options.file == "bar", options.file
|
||||
print "ok: case insensitive short options work"
|
||||
|
||||
|
||||
|
|
|
@ -8,14 +8,14 @@ try:
|
|||
import string
|
||||
except:
|
||||
print """Could not import the standard "string" module.
|
||||
Please check your PYTHONPATH environment variable."""
|
||||
Please check your PYTHONPATH environment variable."""
|
||||
sys.exit(1)
|
||||
|
||||
try:
|
||||
import regex_syntax
|
||||
except:
|
||||
print """Could not import the standard "regex_syntax" module. If this is
|
||||
a PC, you should add the dos_8x3 directory to your PYTHONPATH."""
|
||||
a PC, you should add the dos_8x3 directory to your PYTHONPATH."""
|
||||
sys.exit(1)
|
||||
|
||||
import os
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue