| Commit message (Expand) | Author | Age | Files | Lines |
* | #1555501: document plistlib and move it to the general library. | Georg Brandl | 2008-01-21 | 1 | -0/+2 |
|
|
* | mmap is an extension module. | Georg Brandl | 2008-01-21 | 1 | -2/+3 |
|
|
* | #1087741: make mmap.mmap the type of mmap objects, not a | Georg Brandl | 2008-01-21 | 1 | -0/+2 |
|
|
* | #1269: fix a bug in pstats.add_callers() and add a unit test file for pstats. | Georg Brandl | 2008-01-21 | 1 | -0/+3 |
|
|
* | #1669: don't allow shutil.rmtree() to be called on a symlink. | Georg Brandl | 2008-01-20 | 1 | -0/+3 |
|
|
* | #1648: add sys.gettrace() and sys.getprofile(). | Georg Brandl | 2008-01-20 | 1 | -0/+2 |
|
|
* | #1664522: in urllib, don't read non-existing directories in ftp mode, | Georg Brandl | 2008-01-20 | 1 | -0/+3 |
|
|
* | #856047: respect the ``no_proxy`` env var when checking for proxies | Georg Brandl | 2008-01-20 | 1 | -0/+3 |
|
|
* | #1178141: add addinfourl.code to get http status code from urllib. | Georg Brandl | 2008-01-20 | 1 | -0/+3 |
|
|
* | note for r60121 | Gregory P. Smith | 2008-01-20 | 1 | -0/+3 |
|
|
* | Patch #1048820 from Stefan Wehr: add insert-mode editing to Textbox. | Andrew M. Kuchling | 2008-01-20 | 2 | -0/+5 |
|
|
* | Fixes/Accepts Patch for issue1189216 - Work properly with archives | Gregory P. Smith | 2008-01-19 | 1 | -0/+3 |
|
|
* | note about r60104 | Gregory P. Smith | 2008-01-19 | 1 | -0/+4 |
|
|
* | Patch #1019808 from Federico Schwindt: Return correct socket error when | Andrew M. Kuchling | 2008-01-19 | 2 | -0/+4 |
|
|
* | #1663329: add os.closerange() to close a range of fds, | Georg Brandl | 2008-01-19 | 1 | -0/+3 |
|
|
* | Fix #1146: TextWrap vs words 1-character shorter than the width. | Georg Brandl | 2008-01-19 | 1 | -0/+3 |
|
|
* | Fix #1679: "0x" was taken as a valid integer literal. | Georg Brandl | 2008-01-19 | 1 | -0/+2 |
|
|
* | missing from r60088 checkin. | Skip Montanaro | 2008-01-19 | 1 | -0/+3 |
|
|
* | Comment in NEWS regarding the change in trace.py. | Facundo Batista | 2008-01-19 | 1 | -0/+3 |
|
|
* | Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). | Andrew M. Kuchling | 2008-01-19 | 2 | -0/+5 |
|
|
* | Sort two names into position | Andrew M. Kuchling | 2008-01-19 | 1 | -2/+2 |
|
|
* | Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer ... | Andrew M. Kuchling | 2008-01-19 | 2 | -0/+4 |
|
|
* | Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for a | Facundo Batista | 2008-01-19 | 1 | -0/+3 |
|
|
* | Added bytes and b'' as aliases for str and '' | Christian Heimes | 2008-01-18 | 1 | -0/+3 |
|
|
* | Added win_add2path.py to Tools/scripts/ | Christian Heimes | 2008-01-18 | 1 | -0/+4 |
|
|
* | Issue #1861: Add read-only attribute listing upcoming events in the order th... | Raymond Hettinger | 2008-01-17 | 1 | -0/+3 |
|
|
* | Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339 | Gregory P. Smith | 2008-01-17 | 1 | -0/+6 |
|
|
* | entry for r60015 | Gregory P. Smith | 2008-01-17 | 1 | -0/+4 |
|
|
* | Make starmap() match its pure python definition and accept any itertable inpu... | Raymond Hettinger | 2008-01-17 | 1 | -0/+3 |
|
|
* | Add news entry. | Raymond Hettinger | 2008-01-16 | 1 | -0/+2 |
|
|
* | Raise a TypeError instead of a ValueError when too many initializers | Thomas Heller | 2008-01-16 | 1 | -0/+2 |
|
|
* | Raise a TypeError if conflicting positional and named arguments are | Thomas Heller | 2008-01-16 | 1 | -0/+3 |
|
|
* | Convert the internal ctypes array type cache to a WeakValueDict so | Thomas Heller | 2008-01-16 | 1 | -0/+3 |
|
|
* | Issue #1786 (by myself): pdb should use its own stdin/stdout around an | Guido van Rossum | 2008-01-15 | 1 | -1/+5 |
|
|
* | Temporarily revert 59967 until GC can be added. | Raymond Hettinger | 2008-01-15 | 2 | -5/+0 |
|
|
* | Issue 1820: structseq objects did not work with the % formatting operator or... | Raymond Hettinger | 2008-01-15 | 2 | -0/+5 |
|
|
* | Fix 1698398: Zipfile.printdir() crashed because the format string expected a... | Raymond Hettinger | 2008-01-14 | 1 | -0/+3 |
|
|
* | Now that I've learnt about structseq objects I felt like converting sys.float... | Christian Heimes | 2008-01-14 | 1 | -0/+3 |
|
|
* | Applied patch #1816: sys.flags patch | Christian Heimes | 2008-01-14 | 1 | -2/+5 |
|
|
* | Added new an better structseq representation. E.g. repr(time.gmtime(0)) now r... | Christian Heimes | 2008-01-14 | 1 | -0/+3 |
|
|
* | Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) | Amaury Forgeot d'Arc | 2008-01-14 | 1 | -0/+3 |
|
|
* | Back out r59931 - test_ctypes fails with it. | Georg Brandl | 2008-01-13 | 1 | -3/+0 |
|
|
* | Patch #1700288: Method cache optimization, by Armin Rigo, ported to | Georg Brandl | 2008-01-12 | 1 | -0/+3 |
|
|
* | Issue 1780: Allow leading and trailing whitespace in Decimal constructor, | Mark Dickinson | 2008-01-12 | 1 | -0/+4 |
|
|
* | News entries for rev. 5990[567]. | Georg Brandl | 2008-01-11 | 1 | -0/+3 |
|
|
* | Doctest results return a named tuple for readability | Raymond Hettinger | 2008-01-11 | 1 | -0/+3 |
|
|
* | Reword entry, not sure I made it much better though. | Neal Norwitz | 2008-01-10 | 1 | -3/+2 |
|
|
* | Fixed #1776. __import__() no longer imports modules by file name | Christian Heimes | 2008-01-09 | 1 | -0/+4 |
|
|
* | minor cleaning | Fred Drake | 2008-01-09 | 1 | -2/+2 |
|
|
* | Issue 846388. Adds a call to PyErr_CheckSignals to | Facundo Batista | 2008-01-08 | 1 | -0/+3 |
|
|