summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Convert "srcdir" into an absolute path if that seems prudent. CurrrentlyNeil Schemenauer2009-02-061-0/+14
| | | | | | | the only user of this is Lib/distutils/tests/test_build_ext.py (in order to find the source for xxmodule.c). I'm not sure if other platforms need similar tweaks, I'm not brave enough to attempt it without being able to test.
* Overhaul Lib/compiler block ordering. The previous code was filled withNeil Schemenauer2009-02-062-159/+97
| | | | | | hacks. The new code is based on issue #2472 posted by Antoine Pitrou. I did some further cleanups of the pyassem code and optimized the block ordering pass.
* Fixed #5167: test_customize_compiler does not apply under non unix compilersTarek Ziadé2009-02-061-0/+6
|
* Ivan on IRC in #twisted reported this crasher.Armin Rigo2009-02-061-0/+5
|
* Fix a number of Win32ErrorTests error cases. chmod wasn't being tested. ↵Kristján Valur Jónsson2009-02-061-5/+7
| | | | 'access' never raises an error.
* removed types usage and added test coverage (work for #3986)Tarek Ziadé2009-02-062-9/+51
|
* Fixed #3987 : removed unused importTarek Ziadé2009-02-061-1/+0
|
* fix download linkBenjamin Peterson2009-02-061-1/+1
|
* fixed #1520877: now distutils reads Read from the environment/MakefileTarek Ziadé2009-02-063-3/+31
|
* using >= so setting verbose to 2 will work as wellTarek Ziadé2009-02-062-6/+6
|
* Implement issue #4285, convert sys.version_info to a namedEric Smith2009-02-064-22/+100
| | | | tuple. Patch by Ross Light.
* README now reflects the current stateTarek Ziadé2009-02-061-16/+5
|
* Fixed #1276768: verbose option was not used in the code.Tarek Ziadé2009-02-065-24/+188
|
* Distutils apparently requires an absolute path so provide one.Neil Schemenauer2009-02-061-1/+1
|
* Fixed #5132: enable extensions to link on SolarisTarek Ziadé2009-02-053-3/+29
|
* Oops, Mac build needs the 'incdirlist' variable so restore it.Neil Schemenauer2009-02-051-1/+5
|
* Make setup.py work when building in a directory other than theNeil Schemenauer2009-02-051-24/+8
| | | | | source directory. Mainly use 'srcdir' rather than os.getcwd() or '.'.
* Fix test_build_ext.py to work when building in a separate directory.Neil Schemenauer2009-02-051-5/+9
| | | | | Since "srcdir" should now be defined on all platforms, use it to find the module source.
* Since sysconfig.get_python_inc() now works when building in aNeil Schemenauer2009-02-051-21/+4
| | | | | directory other than the source directory, simplify the test code in test_sysconfig.py.
* Fix get_python_inc() to work when building in a directory separate fromNeil Schemenauer2009-02-051-5/+11
| | | | the source. Also, define 'srcdir' on non-posix platforms.
* #5031: fix Thread.daemon property docs.Georg Brandl2009-02-051-5/+6
|
* #4563: disable alpha and roman lists, fixes wrong formatting of contributor ↵Georg Brandl2009-02-051-0/+8
| | | | list.
* #4820: use correct module for ctypes.util.Georg Brandl2009-02-051-0/+1
|
* #4827: fix callback example.Georg Brandl2009-02-051-1/+1
|
* #5015: document PythonHome API functions.Georg Brandl2009-02-051-0/+14
|
* PyErr_PrintEx is also in 2.x...Georg Brandl2009-02-051-1/+10
|
* #5059: fix example.Georg Brandl2009-02-051-1/+1
|
* #5144: document that PySys_SetArgv prepends the script directory (or the ↵Georg Brandl2009-02-051-7/+11
| | | | empty string) to sys.path.
* #5153: fix typo in example.Georg Brandl2009-02-051-1/+1
|
* Fix comment for #1835Tarek Ziadé2009-02-051-6/+1
|
* Clarify that named tuples do not have to subclass tuple.Raymond Hettinger2009-02-041-1/+1
|
* Tweak the docs for Counter() objects.Raymond Hettinger2009-02-041-4/+4
|
* Doc fixes. Remove overbroad, redundant warnings. Fixup example code.Raymond Hettinger2009-02-041-27/+9
|
* Minor doc fixups.Raymond Hettinger2009-02-043-7/+10
|
* issue 4804: Provide checks for the format string of strftime, and for the ↵Kristján Valur Jónsson2009-02-043-2/+106
| | | | "mode" string of fopen on Windows. These strings are user provided from python and so we can avoid invoking the C runtime invalid parameter handler by first checking that they are valid.
* Make importlib backwards-compatible to Python 2.2 (but this is not promised toBrett Cannon2009-02-031-3/+16
| | | | | | last; just doing it to be nice). Also fix a message for an exception.
* This refactoring should make it easier to add new calling conventions.Thomas Heller2009-02-033-400/+29
| | | | | | | | | Replace ffi_call_STDCALL and ffi_call_SYSV by a ffi_call_x86 function that cleans up the stack when FFI_SYSV is used, and does nothing for FFI_STDCALL. Remove libffi_msvc\win32.S, which is out of date and also unused; it was only used for building ctypes with the MingW compiler.
* Backport importlib to at least Python 2.5 by getting rid of use of str.format.Brett Cannon2009-02-031-1/+1
|
* Ignore bytecode files in importlib.Brett Cannon2009-02-030-0/+0
|
* Make importlib a package. This allows using svn:externals in the sandbox toBrett Cannon2009-02-032-1/+1
| | | | package up the code for separate distribution.
* Register decimals as numbers.NumberRaymond Hettinger2009-02-032-0/+14
|
* Record operator deprecations in docs.Raymond Hettinger2009-02-031-23/+19
|
* Validate that __length_hint__ returns a usable result.Raymond Hettinger2009-02-032-1/+11
|
* Issue 1242657: list(obj) can swallow KeyboardInterrupt.Raymond Hettinger2009-02-027-15/+65
|
* NEWS entry for issue #1581476Guilherme Polo2009-02-021-0/+2
|
* Fix for issue #1581476Guilherme Polo2009-02-021-2/+1
|
* Moving to importlibGuilherme Polo2009-02-021-4/+3
|
* Restore the previous geometry before leaving the testGuilherme Polo2009-02-021-2/+3
|
* Issue #4494: Fix build with Py_NO_ENABLE_SHARED on Windows.Martin v. Löwis2009-02-022-0/+14
|
* Set native svn:eol-style property for text files.Hirokazu Yamamoto2009-02-020-0/+0
|