| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | | * | | | | | | Issue #14502: release() and unlocked lock generates a ThreadError | Sandro Tosi | 2012-04-05 | 1 | -1/+1 | |
| | | * | | | | | | Issue #14505: Fix file descriptor leak when deallocating file objects created... | Antoine Pitrou | 2012-04-05 | 2 | -1/+5 | |
| | | * | | | | | | Closes #14489: correct link target. | Georg Brandl | 2012-04-05 | 1 | -1/+1 | |
| | | * | | | | | | Transplant 45287f2799f5 from default branch. | Georg Brandl | 2012-04-04 | 1 | -1/+1 | |
| | | * | | | | | | #14481: fix formatting of example in subprocess docs. | R David Murray | 2012-04-03 | 1 | -1/+1 | |
| | | * | | | | | | fix parse_syntax_error to clean up its resources | Benjamin Peterson | 2012-04-03 | 1 | -19/+31 | |
| | | * | | | | | | remove uneeded line | Benjamin Peterson | 2012-04-02 | 1 | -1/+0 | |
| | | * | | | | | | protect this call, too | Benjamin Peterson | 2012-04-02 | 1 | -1/+1 | |
| | | * | | | | | | prevent writing to stderr from messing up the exception state (closes #14474) | Benjamin Peterson | 2012-04-02 | 3 | -0/+30 | |
| | | * | | | | | | Issue #13019: Fix potential reference leaks in bytearray.extend(). | Antoine Pitrou | 2012-04-01 | 2 | -2/+9 | |
| | | * | | | | | | fix typo; thanks to Robert Bardos from docs@ | Sandro Tosi | 2012-03-31 | 1 | -1/+1 | |
| | | * | | | | | | Issue #14437: Fix building the _io module under Cygwin. | Antoine Pitrou | 2012-03-31 | 2 | -1/+6 | |
| | | * | | | | | | use unittest.skip; thanks to Chang Min Jeon from docs@ | Sandro Tosi | 2012-03-31 | 1 | -1/+1 | |
| | | * | | | | | | #14434: make tutorial link in 'help' banner version-specific | R David Murray | 2012-03-31 | 1 | -2/+2 | |
| | | * | | | | | | add 'safari' to webbrowser browsers table; thanks to Jonathan Eunice from docs@ | Sandro Tosi | 2012-03-31 | 1 | -0/+2 | |
| | | * | | | | | | update NEWS for 2.7 as Terry Reedy proposed | Andrew Svetlov | 2012-03-31 | 2 | -4/+8 | |
| | | * | | | | | | #10423: clarify options vs args in argparse discussion of optparse | R David Murray | 2012-03-30 | 1 | -2/+3 | |
| | | * | | | | | | Added a new crasher that targets mutating the underlying storage of a buffer.... | Alex Gaynor | 2012-03-30 | 1 | -0/+30 | |
| | | * | | | | | | Closes #14436: Convert msg + args to string before pickling. | Vinay Sajip | 2012-03-29 | 1 | -2/+9 | |
| | | * | | | | | | Backport of Issue #14409 to 2.7 | Andrew Svetlov | 2012-03-29 | 3 | -1/+7 | |
| | | * | | | | | | #14416: add missing LOG_SYSLOG facility to syslog docs. | R David Murray | 2012-03-29 | 1 | -1/+2 | |
| | | * | | | | | | Closes #14411: remove outdated comment in rlcompleter docstring. | Georg Brandl | 2012-03-27 | 1 | -20/+16 | |
| | | * | | | | | | #5301: re-add image/vnd.microsoft.icon per discussion | R David Murray | 2012-03-27 | 1 | -0/+1 | |
| | | * | | | | | | Issue #14410: fix typo in argparse doc; patch by Tshepang Lekhonkhobe | Sandro Tosi | 2012-03-26 | 1 | -2/+2 | |
| | | * | | | | | | Minor documentation tweak. | Vinay Sajip | 2012-03-26 | 1 | -1/+1 | |
| | | * | | | | | | kill this terribly outdated comment | Benjamin Peterson | 2012-03-26 | 1 | -4/+0 | |
| | | * | | | | | | Closes #14401: fix typos in curses howto. | Georg Brandl | 2012-03-25 | 1 | -3/+3 | |
| | | * | | | | | | Issue #14400: Fix typo. | Martin v. Löwis | 2012-03-24 | 1 | -1/+1 | |
| | | * | | | | | | Closes #14314: backported fix. | Vinay Sajip | 2012-03-23 | 1 | -1/+2 | |
| | | * | | | | | | attempt to fix asyncore buildbot failure | Giampaolo Rodola' | 2012-03-23 | 1 | -2/+7 | |
| | | * | | | | | | Issue #10538 - Update Misc/NEWS | krisvale | 2012-03-22 | 1 | -0/+5 | |
| | | * | | | | | | Issue #10538. Put a reference to the source object in the Py_buffer when | Kristján Valur Jónsson | 2012-03-22 | 1 | -1/+1 | |
| | | * | | | | | | fix #10340: properly handle EINVAL on OSX and also avoid to call handle_conne... | Giampaolo Rodola' | 2012-03-22 | 3 | -8/+29 | |
| | | * | | | | | | this should technicaly be identifier | Benjamin Peterson | 2012-03-22 | 1 | -1/+1 | |
| | | * | | | | | | merge heads | Benjamin Peterson | 2012-03-22 | 5 | -5/+28 | |
| | | |\ \ \ \ \ \ | ||||||
| | | | * | | | | | | #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v | R David Murray | 2012-03-21 | 2 | -3/+10 | |
| | | | * | | | | | | #3573: idle now doesn't hungs if launched as: idle -e <directory> | Andrew Svetlov | 2012-03-21 | 3 | -2/+14 | |
| | | | * | | | | | | Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. | Giampaolo Rodola' | 2012-03-20 | 2 | -0/+4 | |
| | | * | | | | | | | check for NULL | Benjamin Peterson | 2012-03-22 | 1 | -1/+1 | |
| | | * | | | | | | | check by equality for __future__ not identity (closes #14378) | Benjamin Peterson | 2012-03-22 | 3 | -8/+12 | |
| | | |/ / / / / / | ||||||
| | | * | | | | | | merge from release branch | Benjamin Peterson | 2012-03-20 | 0 | -0/+0 | |
| | | |\ \ \ \ \ \ | | | |/ / / / / | ||||||
| | | | * | | | | | merge tag | Benjamin Peterson | 2012-03-20 | 6 | -6/+7 | |
| | | | |\ \ \ \ \ | ||||||
| | | * | \ \ \ \ \ | merge heads | Benjamin Peterson | 2012-03-19 | 9 | -71/+130 | |
| | | |\ \ \ \ \ \ \ | ||||||
| | | | * | | | | | | | Fixes Issue #14331: Use significantly less stack space when importing modules by | Gregory P. Smith | 2012-03-18 | 2 | -31/+98 | |
| | | | * | | | | | | | Add 2.7.3rc2 uuid | Martin v. Löwis | 2012-03-18 | 1 | -0/+1 | |
| | | | * | | | | | | | Merge 2.6.8rc tags into 2.7. | Georg Brandl | 2012-03-18 | 1 | -0/+2 | |
| | | | |\ \ \ \ \ \ \ | | | | | |_|/ / / / | | | | |/| | | | | | ||||||
| | | | | * | | | | | | Remove duplicate hgtags entries for 2.6.8rc{1,2}. | Georg Brandl | 2012-03-18 | 1 | -2/+0 | |
| | | | | * | | | | | | Added tag v2.6.8rc2 for changeset bd9e1a02e3e3 | Barry Warsaw | 2012-03-17 | 1 | -0/+1 | |
| | | | * | | | | | | | null merge | Barry Warsaw | 2012-03-17 | 0 | -0/+0 | |
| | | | |\ \ \ \ \ \ \ | ||||||
| | | | | * \ \ \ \ \ \ | null merge from 2.6 | Barry Warsaw | 2012-03-17 | 0 | -0/+0 | |
| | | | | |\ \ \ \ \ \ \ | | | | | |/ / / / / / | ||||||
