summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to...Florent Xicluna2010-03-301-1/+12
* Backport of weakref.WeakSet and tests from Python 3.Michael Foord2010-03-294-1/+592
* Addition of delta keyword argument to unittest.TestCase.assertAlmostEquals an...Michael Foord2010-03-272-13/+69
* Rename the unittest test_suite function to not clash with a test module name ...Michael Foord2010-03-272-3/+3
* A fix for running unittest tests on platforms without the audioop module (e.g...Michael Foord2010-03-272-14/+7
* Make Fraction to complex comparisons with <=, <, >= or > raise TypeError.Mark Dickinson2010-03-272-4/+19
* Ensure that the failed or unexpected tests are sorted before printing.Florent Xicluna2010-03-261-7/+2
* reorder importsBenjamin Peterson2010-03-261-1/+2
* Addition of -c command line option to unittest, to handle ctrl-c during a tes...Michael Foord2010-03-266-16/+319
* Move a support TestCase out of the main namespace in unittest.test.test_suiteMichael Foord2010-03-261-7/+7
* Remove incorrect docstring in unittest.testMichael Foord2010-03-261-14/+0
* Turn unittest tests into a packageMichael Foord2010-03-2514-4420/+4515
* Fix test_unittest and test_warnings when running "python -Werror -m test.regr...Florent Xicluna2010-03-252-11/+11
* #8207: Fix test_pep277 on OS XFlorent Xicluna2010-03-251-9/+18
* Syntax cleanup `== None` -> `is None`Florent Xicluna2010-03-252-6/+6
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-0/+1
* Replace license with simple attribution.Steven Bethard2010-03-241-13/+1
* Revert r79384 (the fix failed).Antoine Pitrou2010-03-241-11/+2
* replace copy right notice with simple attributionBenjamin Peterson2010-03-241-13/+1
* Trying to fix #8108. Will watch the buildbot(s).Antoine Pitrou2010-03-241-2/+11
* Skip tests which depend on multiprocessing.sharedctypes, if _ctypes is not av...Florent Xicluna2010-03-241-31/+33
* Skip test_ascii_formatd if _ctypes is not available (BSD, ...).Florent Xicluna2010-03-242-14/+9
* logging: Added LOG_FTP for SysLogHandler and updated documentation.Vinay Sajip2010-03-241-1/+3
* The SIGINT signal may happen earlier, during site.py initialization.Florent Xicluna2010-03-231-4/+1
* The standard error should be empty when the signal is killed, except on SIGINT.Florent Xicluna2010-03-231-2/+8
* Silence test_subprocess.Florent Xicluna2010-03-231-24/+12
* Skip test_format_deprecation if _ctypes is not available. Add a filter to th...Florent Xicluna2010-03-231-6/+11
* Merged revisions 79313,79324 via svnmerge fromBenjamin Peterson2010-03-231-5/+5
* Merged revisions 79309 via svnmerge fromBenjamin Peterson2010-03-221-1/+1
* Issue #8205: Remove the "Modules" directory from sys.path when Python is runn...Florent Xicluna2010-03-221-1/+1
* #7667: Fix doctest failures with non-ASCII paths.Florent Xicluna2010-03-221-1/+2
* Merged revisions 79077,79137,79304-79305 via svnmerge fromBenjamin Peterson2010-03-224-10/+170
* Issue #7512: shutil.copystat() could raise an OSError when the filesystemAntoine Pitrou2010-03-221-2/+6
* #7668: Fix test_httpservers failure when sys.executable contains non-ASCII by...Florent Xicluna2010-03-221-2/+12
* Issue #7703: ctypes supports both buffer() and memoryview(). The former is d...Florent Xicluna2010-03-221-2/+9
* Issue #7860: platform.uname now reports the correct 'machine' typeR. David Murray2010-03-222-1/+26
* logging: Added getChild utility method to Logger and added isEnabledFor metho...Vinay Sajip2010-03-222-1/+44
* Missing testsuite filesJesus Cea2010-03-223-0/+716
* Get rid of buffer() in test_ctypes: backport the 3.x tests.Florent Xicluna2010-03-227-47/+30
* Fix an occasional test_ftplib failure, following r79226.Antoine Pitrou2010-03-221-1/+6
* pybsddb 4.8.4 integration. Please, comment in issue #8156Jesus Cea2010-03-2219-209/+680
* Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger ...Vinay Sajip2010-03-222-2/+11
* Fix the NEWS about my last commit: an unicode subclass can now override theVictor Stinner2010-03-221-2/+0
* Issue #8200: logging: Handle errors when multiprocessing is not fully loaded ...Vinay Sajip2010-03-221-3/+11
* Issue #1583863: An unicode subclass can now override the __str__ methodVictor Stinner2010-03-221-0/+11
* Correct usage message displayed for python -m unittest -hMichael Foord2010-03-223-10/+4
* expected failure should not trigger failfast behavior in unittest.Michael Foord2010-03-223-8/+1
* Removing Python 2.3 compatibility code from unittest.Michael Foord2010-03-223-8/+5
* Fix failing test committed by accident.Michael Foord2010-03-221-1/+1
* -f/--failfast command line option for unittest. Issue 8074. Documentation sti...Michael Foord2010-03-224-26/+86