| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove mentions of the Demo directory. | Georg Brandl | 2010-12-30 | 1 | -0/+7 |
|
|
* | Issue 10786: unittest.TextTestRunner default stream no longer bound at import... | Michael Foord | 2010-12-30 | 1 | -0/+4 |
|
|
* | Minor clarification | Terry Reedy | 2010-12-29 | 1 | -2/+2 |
|
|
* | Fix Issue 10753 - Don't quote ;=, in the PATH_INFO envvar. | Senthil Kumaran | 2010-12-29 | 1 | -0/+5 |
|
|
* | Issue #10783: rephrase the changelog (new try) | Victor Stinner | 2010-12-29 | 1 | -1/+1 |
|
|
* | Issue #10783: rephrase the changelog (NEWS, What's new) | Victor Stinner | 2010-12-28 | 1 | -2/+1 |
|
|
* | Issue 10738: Fix webbrowser.Opera.raise_opts value. | Terry Reedy | 2010-12-28 | 1 | -0/+2 |
|
|
* | #9824: encode , and ; in cookie values so that browsers don't split on them | R. David Murray | 2010-12-28 | 1 | -0/+3 |
|
|
* | Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric... | Georg Brandl | 2010-12-28 | 1 | -0/+2 |
|
|
* | Fix #9333. The symlink function is always available now, raising OSError | Brian Curtin | 2010-12-28 | 1 | -0/+4 |
|
|
* | Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 | Victor Stinner | 2010-12-28 | 1 | -0/+3 |
|
|
* | Remove history; adapt a bit more to reST, since this will once be part of the... | Georg Brandl | 2010-12-28 | 1 | -160/+153 |
|
|
* | Add news entry and clarify another. | Georg Brandl | 2010-12-28 | 1 | -2/+4 |
|
|
* | #10768: fix ScrolledText widget construction, and make the example work from ... | Georg Brandl | 2010-12-28 | 1 | -0/+2 |
|
|
* | #10777: fix iteration over dict keys while mutating the dict. | Georg Brandl | 2010-12-28 | 1 | -0/+3 |
|
|
* | #10679: install idle, pydoc, 2to3 scripts with X.Y suffix for make altinstall... | Georg Brandl | 2010-12-28 | 1 | -0/+6 |
|
|
* | Issue #10780: PyErr_SetFromWindowsErrWithFilename() and | Victor Stinner | 2010-12-28 | 1 | -0/+4 |
|
|
* | Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem | Victor Stinner | 2010-12-27 | 1 | -0/+3 |
|
|
* | Issue #10626: test_logging now preserves logger disabled states. | Vinay Sajip | 2010-12-27 | 1 | -2/+4 |
|
|
* | Issue #10774: test_logging now removes temp files created during tests. | Vinay Sajip | 2010-12-27 | 1 | -0/+2 |
|
|
* | #5258/#10642: print fn, line, traceback and continue when .pth file is broken | R. David Murray | 2010-12-26 | 1 | -0/+4 |
|
|
* | revert 87478 | Terry Reedy | 2010-12-26 | 1 | -1/+1 |
|
|
* | Issue #10763: subprocess.communicate() closes stdout and stderr if both are | Victor Stinner | 2010-12-25 | 1 | -0/+3 |
|
|
* | #1693546: don't add quotes around RFC 2231 encoded values. | R. David Murray | 2010-12-24 | 1 | -0/+3 |
|
|
* | Match current tracker name, though I do not know if still active. | Terry Reedy | 2010-12-24 | 1 | -1/+1 |
|
|
* | Add news entry for 87471. | Raymond Hettinger | 2010-12-24 | 1 | -0/+2 |
|
|
* | #1155362: allow hh:mm:ss-uuuu like we allow hh:mm:ss+uuuu in parsedate_tz | R. David Murray | 2010-12-23 | 1 | -0/+3 |
|
|
* | #4871: check that zipfile password is bytes, and give useful error message. | R. David Murray | 2010-12-21 | 1 | -0/+3 |
|
|
* | Issue #10750: The `raw` attribute of buffered IO objects is now read-only. | Antoine Pitrou | 2010-12-21 | 1 | -0/+2 |
|
|
* | Deprecate assertDictContainsSubset() | Raymond Hettinger | 2010-12-21 | 1 | -0/+12 |
|
|
* | Issue3243 - Support iterable bodies in httplib. Patch contributions by Xuanji... | Senthil Kumaran | 2010-12-19 | 1 | -0/+3 |
|
|
* | Bump to 3.2b2. | Georg Brandl | 2010-12-19 | 2 | -2/+2 |
|
|
* | #6075: make idle work with both Carbon AquaTk and Cocoa AquaTk. Patch by Kevi... | Georg Brandl | 2010-12-19 | 2 | -0/+4 |
|
|
* | Issue 10611. Issue 9857. Improve the way exception handling, including test s... | Michael Foord | 2010-12-19 | 2 | -2/+9 |
|
|
* | #10573: use actual/expected consistently in unittest methods. The order of th... | Ezio Melotti | 2010-12-18 | 1 | -0/+3 |
|
|
* | #9286: Fix the rfc822 parser to preserve whitespace in address local part. | R. David Murray | 2010-12-18 | 1 | -0/+3 |
|
|
* | NEWS entry for r87373 | Antoine Pitrou | 2010-12-18 | 1 | -0/+3 |
|
|
* | #10404: Use ctl-button-1 for context menus on OSX Idle. | R. David Murray | 2010-12-18 | 1 | -1/+3 |
|
|
* | #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Ur... | Ezio Melotti | 2010-12-18 | 1 | -0/+3 |
|
|
* | Add subparser aliases for argparse. Resolves issue 9324. Approved by Georg fo... | Steven Bethard | 2010-12-18 | 2 | -0/+3 |
|
|
* | #9907: call rl_initialize early when using editline on OSX | R. David Murray | 2010-12-18 | 1 | -0/+3 |
|
|
* | 100% test coverage, better mapping protocol compatibility, some minor bugfixes | Łukasz Langa | 2010-12-17 | 1 | -1/+5 |
|
|
* | Upgrade to sqlite3 3.7.4. | Martin v. Löwis | 2010-12-17 | 1 | -1/+1 |
|
|
* | Upgrade Tcl/Tk to 8.5.9. | Martin v. Löwis | 2010-12-17 | 1 | -0/+5 |
|
|
* | Issue #4188: Avoid creating dummy thread objects when logging operations | Antoine Pitrou | 2010-12-17 | 1 | -0/+3 |
|
|
* | Issue #10711: Remove HTTP 0.9 support from http.client. The `strict` | Antoine Pitrou | 2010-12-17 | 1 | -0/+4 |
|
|
* | Fix Issue9721 - urljoin behavior when the relative url starts with ';' | Senthil Kumaran | 2010-12-17 | 1 | -0/+2 |
|
|
* | Issue #10710: `Misc/setuid-prog.c` is removed from the source tree. | Antoine Pitrou | 2010-12-16 | 3 | -179/+2 |
|
|
* | Issue #10714: Limit length of incoming request in http.server to 65536 bytes | Antoine Pitrou | 2010-12-16 | 2 | -0/+4 |
|
|
* | Acknowledged renaming of SafeConfigParser to ConfigParser. | Łukasz Langa | 2010-12-16 | 1 | -5/+9 |
|
|