in the __builtin__ namespace, as this program only imports standard Python
modules, which shouldn't need any such names.
git-svn-id: http://scons.tigris.org/svn/scons/trunk@4746
fdb21ef1-2011-0410-befe-
b5e4ea1792b1
False
except NameError:
# Pre-2.2 Python has no False keyword.
- import __builtin__
- __builtin__.False = not 1
+ False = not 1
try:
True
except NameError:
# Pre-2.2 Python has no True keyword.
- import __builtin__
- __builtin__.True = not 0
+ True = not 0
try:
sorted
if reverse:
result.reverse()
return result
- __builtin__.sorted = sorted
def make_temp_file(**kw):
try: