summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* #2279: use os.sep so the MANIFEST file test work on win32Tarek Ziadé2009-02-161-6/+6
|
* Fixed #2279: distutils.sdist.add_defaults now add files listed in ↵Tarek Ziadé2009-02-163-43/+129
| | | | package_data and data_files
* Add GC support to count() objects. Backport candidate.Raymond Hettinger2009-02-161-0/+5
|
* Issue #5260: Various portability and standards compliance fixes, optimizationsMark Dickinson2009-02-151-6/+6
| | | | | | | and cleanups in Objects/longobject.c. The most significant change is that longs now use less memory: average savings are 2 bytes per long on 32-bit systems and 6 bytes per long on 64-bit systems. (This memory saving already exists in py3k.)
* #5179: don't leak PIPE fds when child execution fails.Georg Brandl2009-02-142-0/+19
|
* this needn't be a shebang lineBenjamin Peterson2009-02-141-1/+1
|
* we're no longer using CVS, so this doesn't have to be binaryBenjamin Peterson2009-02-141-31/+30
|
* Replace variableTarek Ziadé2009-02-141-1/+1
|
* Fix for #5257: refactored all tests in distutils, so they use a temporary ↵Tarek Ziadé2009-02-147-74/+64
| | | | directory.
* Add keyword argument support to itertools.count().Raymond Hettinger2009-02-141-0/+2
|
* fix the environ for distutils test_utilTarek Ziadé2009-02-131-1/+6
|
* Fixed #4524: distutils build_script command failed with --with-suffix=3Tarek Ziadé2009-02-132-2/+30
|
* Issue #2461: added tests for distutils.utilTarek Ziadé2009-02-131-0/+213
|
* reverted leak fix, to use the one done in py3k branch (r67382)Tarek Ziadé2009-02-131-2/+12
|
* #3694: add test for fix committed in r66693.Georg Brandl2009-02-131-0/+4
|
* - Issue #3745: Fix hashlib to always reject unicode and non buffer-apiGregory P. Smith2009-02-131-3/+18
| | | | | | supporting objects as input no matter how it was compiled (built in implementations or external openssl library). (backported from a py3k branch)
* fixing the leak introduced in r69304Tarek Ziadé2009-02-121-2/+2
|
* One more test.Raymond Hettinger2009-02-121-0/+3
|
* Add an extra testcase.Raymond Hettinger2009-02-121-0/+3
|
* Issue 5032: added a step argument to itertools.count() and allowed ↵Raymond Hettinger2009-02-121-1/+36
| | | | non-integer arguments.
* no need for this __bases__ trick anymoreBenjamin Peterson2009-02-121-1/+1
|
* Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes evenGregory P. Smith2009-02-111-0/+8
| | | | on LP64 platforms (most 64-bit Linux, bsd, unix systems).
* Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError forMark Dickinson2009-02-101-2/+2
| | | | | | negative arguments. Previously, it raised TypeError. Thanks Lisandro Dalcin.
* Fixed #3386: the optional prefix argument was ignored under OS2 and NT in ↵Tarek Ziadé2009-02-102-3/+5
| | | | distutils.sysconfig.get_python_lib
* compileall used the ctime of bytecode and source to determine if the bytecodeBrett Cannon2009-02-102-7/+78
| | | | | should be recreated. This created a timing hole. Fixed by just doing what import does; check the mtime and magic number.
* Issue 1818: collections.namedtuple() to support automatic renaming of ↵Raymond Hettinger2009-02-102-2/+23
| | | | invalid fieldnames.
* Checking for tk availability before continuing (basically the same that is ↵Guilherme Polo2009-02-091-1/+7
| | | | done in test_ttk_guionly)
* Some tests for Tkinter.Text.searchGuilherme Polo2009-02-094-0/+68
|
* Fixed issue #4890: Handle empty text search pattern inGuilherme Polo2009-02-091-2/+3
| | | | Tkinter.Text.search
* Turned setup_master publicGuilherme Polo2009-02-091-22/+19
|
* Issue #5170: Fixed Unicode output bug in logging and added test case. This ↵Vinay Sajip2009-02-082-7/+32
| | | | is a regression which did not occur in 2.5.
* Issue #4512 closeout: Make ZipImport.get_filename() a public methodNick Coghlan2009-02-081-6/+6
|
* Issue 4195: Restore the ability to execute packages with the -m switch (but ↵Nick Coghlan2009-02-082-6/+75
| | | | this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda)
* make destinsrc privateBenjamin Peterson2009-02-072-6/+6
|
* Add test for issue #999042, explict global statement works.Neil Schemenauer2009-02-071-0/+7
|
* Fix broken test in test_hotshot. Treating the current directory as anNeil Schemenauer2009-02-071-1/+7
| | | | | empty file is sloppy and non-portable. Use NamedTemporaryFile to make an empty file.
* Eliminated the need to use ttk.__loadtk__ and the problems related it.Guilherme Polo2009-02-072-36/+42
|
* Issue #999042: The Python compiler now handles explict global statementsNeil Schemenauer2009-02-073-10/+15
| | | | | correctly (should be assigned using STORE_GLOBAL opcode). This was done by having the system table differentiate between explict and implicit globals.
* Make names generated for 'with' variables match the built-in compiler.Neil Schemenauer2009-02-071-1/+1
|
* #3986 replacing string and types call (like in the Py3k branch), and put ↵Tarek Ziadé2009-02-072-24/+55
| | | | exec_msg call at the right place
* 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
|
* fixed #1520877: now distutils reads Read from the environment/MakefileTarek Ziadé2009-02-062-3/+28
|
* 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-061-1/+13
| | | | tuple. Patch by Ross Light.