| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Apply the first part of the 'raise' fixer (the three-argument cases are not
converted and will need to wait until native support of with_traceback() is
available).
|
|
|
|
| |
dbm.whichdb() if necessary.
|
| |
|
|
|
|
| |
instead of __builtin__.
|
|
|
|
| |
compat/_scons_builtings.py, to avoid the name conflict.
|
| |
|
|
|
|
| |
the SCons.compat layer import cPickle as pickle when it's available.
|
|
|
|
| |
the SCons.compat layer import cProfile as profile when it's available.
|
| |
|
|
|
|
|
| |
instead of the deprecated User{Dict,List,String} modules. The two test
scripts that use User{List,String} fall back on ImportError by hand.
|
|
|
|
|
| |
forward-compatible io.StringIO class, with the addition of an "io"
compatibility module for Python versions before 2.6.
|
|
|
|
| |
transition to using the Python 2.6 io.StringIO class.
|
|
|
|
| |
exposed the issue.
|
| |
|
|
|
|
| |
the User's Guide XML from the .in files' SGML.
|
| |
|
|
|
|
| |
This fix should be in 2.0.1, which will mirror the changes in 1.3.1.
|
|
|
|
|
| |
in the __builtin__ namespace, as this program only imports standard Python
modules, which shouldn't need any such names.
|
| |
|
|
|
|
| |
Fix a typo in the SConstruct.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The 'buffer' fixer simply replaces 'buffer( ... )' with 'memoryview( ... )',
which is incorrect for our cases, so these changes had to be done by hand and
a forward-compatibility class added.
The 'xrange' fixer was applied. Manual changes were minimal: a few case in
test strings and one use of 'range' as an identifer in the same scope as
where 'xrange' was converted to 'range'.
The "sets15" compat function, which provided backward compatibility for Python
versions prior to 2.2, was removed as no longer needed.
|
|
|
|
|
|
|
| |
Accumulated small fixers: renames, next, zip, and intern.
Files that were modified or added while developing on branches/pending didn't
have the fixers previously applied. This patchset picks up those.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Applied a number of idiomatic changes.
Uses of the 'sort()' method were converted into calls of 'sorted()' when
possible and the sorted() expression was inserted into a subsequent statement
whenever that made sense.
The statement 'while 1:' was changed to 'while True:'.
Names from the 'types' module (e.g., 'types.FooType') were converted to the
equivalent build-in type (e.g., 'foo').
Comparisons between types were changed to use 'isinstance()'.
|
| |
|
|
|
|
|
|
|
|
| |
Wrap a zip() expression in list().
http://scons.tigris.org/issues/show_bug.cgi?id=2342
Remove the 'L' from 'long' variables (no longer needed).
|
|
|
|
|
| |
development. Note that this set of changes is NOT backward-compatible;
the trunk no longer works with Python 1.5.2, 2.0, or 2.1.
|
| |
|
| |
|
|
|
|
|
|
|
| |
For the user in question who had VS 8.0 express installed, the vc version was being set to 8.0, and the the vs version was being set to the same, which was then being used to detect the vs version by an expected binary.
Since it though it had VS 8.0, the binary was the not there for VS8.0 Express, so it was bailing out on the initialization.
The fix is to have a VC8.0Exp as well as VC8.0 (also for VS9.0Exp).
|
| |
|
| |
|
|
|
|
| |
(Gottfried Ganssauge)
|
|
|
|
| |
a Builder object, or known to generate a Builder object, or a callable.
|
| |
|
| |
|
|
|
|
| |
+ lots of additional debug output
|
|
|
|
| |
building 32 bit on 64 bit host.
|
|
|
|
| |
sdk doesn't exist.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
http://scons.tigris.org/svn/scons/branches/pending
........
r4648 | managan | 2010-01-22 09:40:52 -0800 (Fri, 22 Jan 2010) | 9 lines
Added dismbiguate calls on a targets side effects in the
make_ready_all and make_ready_current routines of Taskmaster.py.
This fixes Stefan Hepp's problem with latex. Directories to
hold the side effect files were not created when using
variantDir with duplicate=0
Modifying subdir_variantdir_include2.py to run scons with an
explicit target to reveal this problem.
........
r4654 | stevenknight | 2010-01-27 07:41:01 -0800 (Wed, 27 Jan 2010) | 5 lines
Issue 2534: fix Scanners' default ability to return Dir nodes by
making the default node_class the real SCons.Node.FS.Base class,
not SCons.Node.FS.Entry (which is now, and has been for some time,
a subclass).
........
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
doesn't pick them.
Perhaps not for all flavors of the SDK, but for SDK 7.0.
Currently the following tests fail:
Failed the following 2 tests:
test\IDL\midl.py
test\Win32\scons-bat-error.py
We should add to the docs which combinations of VC and SDK we expect to work, and which have been tested.
|
|
|
|
|
| |
This change should itself be backed out before merge "pending"
back into trunk.
|
| |
|
|
|
|
|
|
| |
command tries to work with a directory named foo instead of the
file foo.tex. The builder now ignores a directory and continues
searching to find the correct file.
|
| |
|
|
|
|
| |
consistent w.r.t. "... " at the end of the message.
|
| |
|
|
|
|
| |
Need to regenerate the .xml files.
|
| |
|
| |
|