summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* correctly handle descrs with __missing__Benjamin Peterson2009-05-271-2/+12
* Fix field name conflicts for named tuples.Raymond Hettinger2009-05-272-7/+47
* Fixes issue 6110Ronald Oussoren2009-05-261-1/+2
* #6112: list.remove raises ValueError, not RuntimeError.Georg Brandl2009-05-261-1/+1
* Issue 5794: fix cPickle's unpickling of recursive tuples.Collin Winter2009-05-262-0/+15
* Allow multiple context managers in one with statement, as proposedGeorg Brandl2009-05-254-11/+113
* Make assertSequenceEqual error messages less cryptic, particularly for nested...Michael Foord2009-05-251-25/+32
* add a SETUP_WITH opcodeBenjamin Peterson2009-05-252-7/+8
* handle errors from _PyObject_LookupSpecial when __get__ failsBenjamin Peterson2009-05-251-1/+17
* make class skipping decorators the same as skipping every test of the classBenjamin Peterson2009-05-252-43/+18
* Issue #6050: Don't fail extracting a directory from a zipfile ifMartin v. Löwis2009-05-242-1/+7
* Issue #6065: Do not try to build a version-independentMartin v. Löwis2009-05-241-0/+2
* Issue #1309352: fcntl now converts its third arguments to a C `long` ratherAntoine Pitrou2009-05-241-1/+16
* Fixed Issue1424152, urllib2 fails with HTTPS over Proxy.Senthil Kumaran2009-05-243-3/+57
* Add smtplib test from issue 5259.R. David Murray2009-05-231-0/+20
* Issue #3877: skip a test_fileio subtest on all BSDs, not only FreeBSDAntoine Pitrou2009-05-231-1/+1
* Issue 6089: str.format raises SystemError.Eric Smith2009-05-232-0/+8
* Fix spelling left over from testing.R. David Murray2009-05-231-1/+1
* Don't be so wordy in requires('network') in case other testsR. David Murray2009-05-231-5/+2
* Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returnsR. David Murray2009-05-232-3/+30
* fixed encodingTarek Ziadé2009-05-221-2/+2
* don't use subprocess.call with PIPEs as the child can fill the pipe buf andPhilip Jenvey2009-05-221-2/+4
* Rename TestCase._result to _resultForDoCleanups to avoid potential clashes in...Michael Foord2009-05-212-4/+4
* Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72...Mark Dickinson2009-05-201-0/+7
* Fix issue #1689458 by teaching frame_setlineno how to jump to the first line ofJeffrey Yasskin2009-05-201-0/+21
* Issue 6066: POP_MARK was not in pickle protocol 0.Collin Winter2009-05-201-1/+1
* fixed the 'package' option of build_extTarek Ziadé2009-05-192-11/+35
* Issue 6032: fix refleaks in test_urllib2_localnet.Collin Winter2009-05-181-17/+21
* While I was modifying test_trace, it threw an exception when I accidentallyJeffrey Yasskin2009-05-181-1/+1
* Issue 6037: MutableSequence.__iadd__ should return self.Raymond Hettinger2009-05-181-0/+1
* Fixed #6053 - win32 fixes for distutils testsTarek Ziadé2009-05-182-3/+7
* working with relative paths to avoid tar warnings on absolute pathsTarek Ziadé2009-05-181-2/+14
* Fixed the library extension when distutils build_ext is used inplaceTarek Ziadé2009-05-182-10/+7
* fixed the test nameTarek Ziadé2009-05-171-2/+2
* pep8-fied distutils.archive_util + added minimum test coverageTarek Ziadé2009-05-172-40/+110
* pep8-fied distutils.dir_utilTarek Ziadé2009-05-171-61/+49
* removed sys.platform == 'mac' usage in distutils.dir_utilTarek Ziadé2009-05-172-11/+14
* removed sys.platform == 'mac' support in distutils.dist.parse_command_line an...Tarek Ziadé2009-05-172-25/+39
* not running this test with MSVC6Tarek Ziadé2009-05-171-0/+7
* completely ignore old-style stuff for type checking overloadingBenjamin Peterson2009-05-161-9/+12
* properly lookup __instancecheck__ and __subclasscheck__Benjamin Peterson2009-05-161-6/+17
* use skipTest()Benjamin Peterson2009-05-161-4/+1
* pep8-fied distutils.dist moduleTarek Ziadé2009-05-161-93/+37
* #6041: sdist and register now use the check command. No more duplicate code f...Tarek Ziadé2009-05-165-72/+179
* Fix bootstrapping by removing uses of the copy module in distutilsAntoine Pitrou2009-05-152-8/+6
* Issue #2116: Weak references and weak dictionaries now support copy()ing and ...Antoine Pitrou2009-05-153-1/+113
* Issue #1655: Make imaplib IPv6-capable. Patch by Derek Morr.Antoine Pitrou2009-05-151-4/+2
* Issue 6024: make regrtest.py promote refleaks to test failures.Collin Winter2009-05-141-1/+11
* a useful decorator for cleaning up threadsBenjamin Peterson2009-05-142-7/+13
* prevent refleaks from threadsBenjamin Peterson2009-05-141-1/+5