summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Fixed #5316 : test failure in test_siteTarek Ziadé2009-02-252-6/+4
* Expand upon test_site.test_s_option to try to debug its failure.Brett Cannon2009-02-241-1/+2
* Backport 69934: Register xrange() as a Sequence.Raymond Hettinger2009-02-242-0/+4
* Fix call to os.waitpid, it does not take keyword args.Neil Schemenauer2009-02-241-1/+1
* more test coverageTarek Ziadé2009-02-232-0/+150
* Removing unused __main__ sectionsTarek Ziadé2009-02-222-9/+0
* removing map and lambda usage, so the test is similar to py3k's branch oneTarek Ziadé2009-02-221-2/+3
* moved distutils.text_file tests into a real unittest classTarek Ziadé2009-02-222-77/+87
* Revert debugging statements, culprit is possibly test_distutils (see #5316)Antoine Pitrou2009-02-221-2/+1
* Try to make sense of the test_site buildbot failuresAntoine Pitrou2009-02-221-1/+2
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-2127-38/+38
* Speedup and simplify negative counter using count's new step argument.Raymond Hettinger2009-02-211-3/+3
* Fix keyword arguments for itertools.count().Raymond Hettinger2009-02-211-0/+2
* Issue #5295: Typos in turtle.pyMark Dickinson2009-02-201-21/+21
* Issue 5176: special-case string formatting in BINARY_MODULO implementation. T...Collin Winter2009-02-201-0/+6
* #5287: Add exception handling around findCaller() call to help out IronPython.Vinay Sajip2009-02-191-1/+6
* Inline coefficients in gamma(). Add reflection formula. Add comments.Raymond Hettinger2009-02-191-10/+18
* Add some cross-references to the docs. Simplify the python code equivalent f...Raymond Hettinger2009-02-191-3/+3
* Add keyword arg support to itertools.repeat().Raymond Hettinger2009-02-191-0/+1
* Add keyword arg support to itertools.compress().Raymond Hettinger2009-02-191-0/+1
* fixed the data_files inclusion behaviorTarek Ziadé2009-02-172-3/+7
* Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0,Hirokazu Yamamoto2009-02-171-0/+21
* Issue #5292: Fixed mmap crash on its boundary access m[len(m)].Hirokazu Yamamoto2009-02-171-0/+4
* #2279 added the plain path case for data_filesTarek Ziadé2009-02-172-7/+23
* #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 package_dat...Tarek Ziadé2009-02-163-43/+129
* 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
* #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 dir...Tarek Ziadé2009-02-147-74/+64
* 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
* 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 non-integ...Raymond Hettinger2009-02-121-1/+36
* 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
* Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError forMark Dickinson2009-02-101-2/+2
* Fixed #3386: the optional prefix argument was ignored under OS2 and NT in dis...Tarek Ziadé2009-02-102-3/+5
* compileall used the ctime of bytecode and source to determine if the bytecodeBrett Cannon2009-02-102-7/+78
* Issue 1818: collections.namedtuple() to support automatic renaming of invalid...Raymond Hettinger2009-02-102-2/+23