summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424.Vinay Sajip2009-10-212-0/+12
* #7170: fix explanation about non-weakrefable builtin types.Georg Brandl2009-10-211-0/+4
* Test wouldn't work in debug mode.Antoine Pitrou2009-10-201-0/+1
* clarify buffer arg #7178Benjamin Peterson2009-10-201-2/+2
* Issue #1722344: threading._shutdown() is now called in Py_Finalize(), whichAntoine Pitrou2009-10-205-29/+59
* Issue #7099: Decimal.is_normal should return True for all nonzeroMark Dickinson2009-10-203-13/+16
* use property apiBenjamin Peterson2009-10-201-1/+1
* NEWS entry for r75531.Antoine Pitrou2009-10-191-0/+3
* Issue #5833: Fix extra space character in readline completion with theAntoine Pitrou2009-10-191-3/+4
* Issue #7133: SSL objects now support the new buffer API.Antoine Pitrou2009-10-193-25/+33
* Clarify error report message, and don't recommend running in verboseR. David Murray2009-10-191-1/+3
* Eliminate warning message that looks like an error message. When it wasR. David Murray2009-10-191-2/+0
* Only run test_curses when sys.__stdout__ is a tty. This eliminates theR. David Murray2009-10-191-0/+2
* Issue #7169: Document PyFloat_AsString and PyFloat_AsReprString, and note tha...Eric Smith2009-10-192-0/+27
* Removed calls to PyFloat_AsReprString.Eric Smith2009-10-191-42/+63
* Issue #7151: regrtest would generate a JSON failure if there was outputR. David Murray2009-10-182-13/+19
* Add a comment about unreachable code, and fix a typoAntoine Pitrou2009-10-181-1/+3
* Add a test for same-thread asynchronous exceptions (see #1779233).Antoine Pitrou2009-10-181-0/+19
* Restore sys.path in test_tkNick Coghlan2009-10-181-4/+4
* Silence a deprecation warning by using the appropriate replacement constructNick Coghlan2009-10-181-1/+3
* Changed distutils tests to avoid environment alterationTarek Ziadé2009-10-1813-34/+67
* Fix missing word.Georg Brandl2009-10-181-1/+1
* Fix for issue 7149: a regression in 2.6.3 that causes an exception whenRonald Oussoren2009-10-182-2/+11
* Using CleanImport to revert a reload of the os module doesn't work due to fun...Nick Coghlan2009-10-182-5/+24
* Fix a typo.Senthil Kumaran2009-10-181-1/+1
* Fix for Issue7155 - urllib do not document default use of system proxy config...Senthil Kumaran2009-10-182-4/+14
* Protect against attempts to replace PyNumber_Add with PyNumber_InPlaceAdd in ...Mark Dickinson2009-10-171-0/+4
* Don't replace sys.path in test_siteNick Coghlan2009-10-171-2/+2
* Avoid replacing existing modules and sys.path in import testsNick Coghlan2009-10-172-10/+14
* Also check and restore identity of sys.path, sys.argv and os.environ rather t...Nick Coghlan2009-10-171-6/+9
* Move restoration of the os.environ object into the context manager where it b...Nick Coghlan2009-10-172-1/+1
* Revert changes made to environment in test_httpserversNick Coghlan2009-10-171-3/+6
* Don't invoke reload(sys) and use StringIO objects instead of real files to ca...Nick Coghlan2009-10-172-46/+37
* Restore original sys.path when running TTK testsNick Coghlan2009-10-173-8/+33
* Fix refleaks in _ctypes PyCSimpleType_New, which fixes the refleak seen in te...Georg Brandl2009-10-171-3/+3
* Check and revert expected sys.path alterationsNick Coghlan2009-10-171-5/+9
* Formatting tweak so that before and after values are vertically alignedNick Coghlan2009-10-171-2/+2
* Enhancement to the new environment checking code to print the changed items u...Nick Coghlan2009-10-171-15/+39
* test_math ulp computation was wrong on big-endian systemsMark Dickinson2009-10-171-1/+1
* Correctly restore sys.stdout in test_descrNick Coghlan2009-10-171-0/+3
* this test requires zlib supportTarek Ziadé2009-10-161-0/+1
* Removed usage of unsafe PyFloat_AsString.Eric Smith2009-10-161-7/+13
* Issue #7120: logging: Removed import of multiprocessing which is causing cras...Vinay Sajip2009-10-162-14/+15
* Allow core Python build to succeed under WITHOUT_COMPLEX. The module build s...Mark Dickinson2009-10-152-4/+9
* Issue #7142: Fix uses of unicode in memoryview objectsMark Dickinson2009-10-152-2/+9
* only clear a module's __dict__ if the module is the only one with a reference...Benjamin Peterson2009-10-153-1/+15
* don't need to mess up sys.pathBenjamin Peterson2009-10-151-3/+0
* Fix missing semicolonMark Dickinson2009-10-151-1/+1
* make inspect.isabstract() always return a boolean; add a test for it, too #7069Benjamin Peterson2009-10-153-1/+26
* some cleanupsBenjamin Peterson2009-10-151-10/+10