| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #7270: Add some dedicated unit tests for multi-thread synchronization | Antoine Pitrou | 2009-11-06 | 1 | -0/+3 |
|
|
* | Issue #7264: Fix a possible deadlock when deallocating thread-local objects | Antoine Pitrou | 2009-11-05 | 1 | -0/+3 |
|
|
* | Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent | Antoine Pitrou | 2009-11-04 | 2 | -0/+4 |
|
|
* | Since r76034 was successful, add a NEWS entry for it. | Antoine Pitrou | 2009-11-02 | 1 | -0/+4 |
|
|
* | Fix exception handling in itertools.izip_longest(). | Raymond Hettinger | 2009-11-01 | 1 | -0/+3 |
|
|
* | news entry for r76000 | Gregory P. Smith | 2009-11-01 | 1 | -0/+6 |
|
|
* | Issue #6603: Fix --with-tsc build failures on x86-64 that resulted | Mark Dickinson | 2009-10-31 | 1 | -0/+4 |
|
|
* | Deprecate PyOS_ascii_strtod and PyOS_ascii_atof, and document the replacement... | Mark Dickinson | 2009-10-31 | 1 | -0/+3 |
|
|
* | Move a Misc/NEWS entry to right section. | Mark Dickinson | 2009-10-31 | 1 | -4/+4 |
|
|
* | Issue #7222: Make thread "reaping" more reliable so that reference | Antoine Pitrou | 2009-10-30 | 1 | -0/+6 |
|
|
* | Remove mention of the old -X command line switch. | Georg Brandl | 2009-10-29 | 1 | -2/+1 |
|
|
* | Issue #7233: Fix Decimal.shift and Decimal.rotate methods for | Mark Dickinson | 2009-10-29 | 1 | -2/+4 |
|
|
* | Issue #7233: A number of two-argument Decimal methods were failing to | Mark Dickinson | 2009-10-29 | 1 | -0/+3 |
|
|
* | Issue #4750: Store the basename of the original filename in | Lars Gustäbel | 2009-10-29 | 1 | -0/+3 |
|
|
* | Fixed #1180: Option to ignore ~/.pydistutils.cfg in Distutils | Tarek Ziadé | 2009-10-27 | 1 | -0/+3 |
|
|
* | Issue #7218: Fix test_site for win32 | Tarek Ziadé | 2009-10-27 | 1 | -0/+3 |
|
|
* | Issue #7205: Fix a possible deadlock when using a BZ2File object from several... | Antoine Pitrou | 2009-10-27 | 1 | -0/+3 |
|
|
* | Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in | Mark Dickinson | 2009-10-26 | 1 | -0/+3 |
|
|
* | Finished removing _PyOS_double_to_string, as mentioned in issue 7117. | Eric Smith | 2009-10-26 | 1 | -0/+4 |
|
|
* | Issue #1087418: Small performance boost for bitwise operations on longs. | Mark Dickinson | 2009-10-25 | 1 | -0/+2 |
|
|
* | Issue #7071: byte-compilation in Distutils now looks at sys.dont_write_bytecode | Tarek Ziadé | 2009-10-24 | 1 | -0/+3 |
|
|
* | #7066 - Fixed distutils.archive_util.make_archive behavior so it restores the... | Tarek Ziadé | 2009-10-24 | 1 | -0/+3 |
|
|
* | Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and io.String... | Antoine Pitrou | 2009-10-24 | 1 | -0/+3 |
|
|
* | Acknowledge Ned Deily (extensive bug hunting and testing on OS X) | Mark Dickinson | 2009-10-24 | 1 | -0/+1 |
|
|
* | Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424. | Vinay Sajip | 2009-10-21 | 1 | -0/+2 |
|
|
* | Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which | Antoine Pitrou | 2009-10-20 | 2 | -0/+5 |
|
|
* | Issue #7099: Decimal.is_normal should return True for all nonzero | Mark Dickinson | 2009-10-20 | 1 | -0/+3 |
|
|
* | NEWS entry for r75531. | Antoine Pitrou | 2009-10-19 | 1 | -0/+3 |
|
|
* | Issue #7133: SSL objects now support the new buffer API. | Antoine Pitrou | 2009-10-19 | 1 | -0/+2 |
|
|
* | Issue #7169: Document PyFloat_AsString and PyFloat_AsReprString, and note tha... | Eric Smith | 2009-10-19 | 1 | -0/+3 |
|
|
* | Issue #7151: regrtest would generate a JSON failure if there was output | R. David Murray | 2009-10-18 | 1 | -0/+3 |
|
|
* | Fix for issue 7149: a regression in 2.6.3 that causes an exception when | Ronald Oussoren | 2009-10-18 | 1 | -0/+2 |
|
|
* | Issue #7120: logging: Removed import of multiprocessing which is causing cras... | Vinay Sajip | 2009-10-16 | 1 | -9/+12 |
|
|
* | only clear a module's __dict__ if the module is the only one with a reference... | Benjamin Peterson | 2009-10-15 | 1 | -0/+3 |
|
|
* | make inspect.isabstract() always return a boolean; add a test for it, too #7069 | Benjamin Peterson | 2009-10-15 | 1 | -0/+2 |
|
|
* | Add support to the ihooks module for relative imports. | Neil Schemenauer | 2009-10-14 | 1 | -0/+2 |
|
|
* | Issue #1754094: Improve the stack depth calculation in the compiler. | Neil Schemenauer | 2009-10-14 | 1 | -0/+4 |
|
|
* | Enhanced Issue 7058 patch, which will not be backported. Refactors the | R. David Murray | 2009-10-14 | 1 | -2/+3 |
|
|
* | Update Misc/README. | Georg Brandl | 2009-10-11 | 1 | -3/+11 |
|
|
* | Move find_recursionlimit.py to Tools/scripts; it is out of place in Misc. | Georg Brandl | 2009-10-11 | 4 | -120/+2 |
|
|
* | Issue #7084: Fix a (very unlikely) crash when printing a list from one | Antoine Pitrou | 2009-10-11 | 2 | -0/+4 |
|
|
* | Fixed Issue6894, urllib2 doesn't respect "no_proxy" environment | Senthil Kumaran | 2009-10-11 | 1 | -0/+2 |
|
|
* | Issue #7055: test___all__ now greedily detects all modules which have an | Antoine Pitrou | 2009-10-10 | 1 | -0/+3 |
|
|
* | Issue #7086: Added TCP support to SysLogHandler and tidied up some anachronis... | Vinay Sajip | 2009-10-10 | 1 | -0/+3 |
|
|
* | Issue #7082: When falling back to the MIME 'name' parameter, the | R. David Murray | 2009-10-09 | 2 | -0/+4 |
|
|
* | Issue #7078: _struct.__doc__ was being ignored. Import it into struct. | Mark Dickinson | 2009-10-08 | 1 | -0/+2 |
|
|
* | Issue #7048: logb should round its result when that result doesn't fit | Mark Dickinson | 2009-10-07 | 1 | -0/+3 |
|
|
* | Add Anders Chrigstrom to Misc/ACKS for his work on unicodedata. | Amaury Forgeot d'Arc | 2009-10-06 | 1 | -0/+1 |
|
|
* | #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, | Amaury Forgeot d'Arc | 2009-10-06 | 1 | -0/+5 |
|
|
* | Issue #7058: Added save/restore for argv and os.environ to runtest_inner | R. David Murray | 2009-10-05 | 1 | -0/+3 |
|
|