Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Backport of several functions from Python 3.0 to 2.6 including ↵ | Christian Heimes | 2008-01-25 | 1 | -1/+7 |
| | | | | | | | PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. First chapter of the Python 3.0 io framework back port: _fileio The next step depends on a working bytearray type which itself depends on a backport of the nwe buffer API. | ||||
* | News entry for r60265 (Issue 1920). | Amaury Forgeot d'Arc | 2008-01-24 | 1 | -1/+6 |
| | |||||
* | News about recently fixed crashers: | Guido van Rossum | 2008-01-24 | 1 | -0/+4 |
| | | | | | | - A few crashers fixed: weakref_in_del.py (issue #1377858); loosing_dict_ref.py (issue #1303614, test67.py); borrowed_ref_[34].py (not in tracker). | ||||
* | Updated for optional delay argument to FileHandler and subclasses. | Vinay Sajip | 2008-01-24 | 1 | -1/+8 |
| | |||||
* | Applied #1069410 | Christian Heimes | 2008-01-23 | 1 | -0/+4 |
| | | | | The "can't load dll" message box on Windows is suppressed while an extension is loaded by calling SetErrorMode in dynload_win.c. The error is still reported properly. | ||||
* | Fixed bug #1915: Python compiles with --enable-unicode=no again. However ↵ | Christian Heimes | 2008-01-23 | 1 | -0/+4 |
| | | | | several extension methods and modules do not work without unicode support. | ||||
* | Let pprint() support sets and frozensets (suggested by David Mertz). | Raymond Hettinger | 2008-01-23 | 1 | -0/+2 |
| | |||||
* | - Fix Issue #1703448: A joined thread could show up in the | Gregory P. Smith | 2008-01-22 | 1 | -0/+4 |
| | | | | | threading.enumerate() list after the join() for a brief period until it actually exited. | ||||
* | accepts and closes issue #1221598: adds an optional callback to ftplib.FTP | Gregory P. Smith | 2008-01-22 | 1 | -0/+3 |
| | | | | storbinary() and storlines() methods. | ||||
* | Patch #1720595: add T_BOOL to the range of structmember types. | Georg Brandl | 2008-01-21 | 1 | -0/+2 |
| | | | | Patch by Angelo Mottola, reviewed by MvL, tests by me. | ||||
* | #1715: include sub-extension modules in pydoc text output. | Georg Brandl | 2008-01-21 | 1 | -0/+2 |
| | |||||
* | Add NEWS entry for #1882. | Georg Brandl | 2008-01-21 | 1 | -0/+3 |
| | |||||
* | Updated to include news on recent logging fixes and documentation changes. | Vinay Sajip | 2008-01-21 | 1 | -14/+31 |
| | |||||
* | #1530959: change distutils build dir for --with-pydebug python builds. | Georg Brandl | 2008-01-21 | 1 | -0/+4 |
| | |||||
* | #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 |
| | | | | factory function. Allow it to be subclassed. | ||||
* | #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 |
| | | | | | returning a 0-byte file -- raise an IOError instead. Original patch from Phil Knirsch. | ||||
* | #856047: respect the ``no_proxy`` env var when checking for proxies | Georg Brandl | 2008-01-20 | 1 | -0/+3 |
| | | | | | in urllib and using the other ``_proxy`` env vars. Original patch by Donovan Baarda. | ||||
* | #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 |
| | | | | Fix an off-by-one error I noticed. | ||||
* | Fixes/Accepts Patch for issue1189216 - Work properly with archives | Gregory P. Smith | 2008-01-19 | 1 | -0/+3 |
| | | | | that have file headers past the 2**31 byte boundary. | ||||
* | 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 |
| | | | | | | | | a default timeout has been set, by using getsockopt() to get the error condition (instead of trying another connect() call, which seems to be a Linuxism). 2.5 bugfix candidate, assuming no one reports any problems with this change. | ||||
* | #1663329: add os.closerange() to close a range of fds, | Georg Brandl | 2008-01-19 | 1 | -0/+3 |
| | | | | | ignoring errors, and use this in subprocess to speed up subprocess creation in close_fds mode. Patch by Mike Klaas. | ||||
* | Fix #1146: TextWrap vs words 1-character shorter than the width. | Georg Brandl | 2008-01-19 | 1 | -0/+3 |
| | | | | Patch by Quentin Gallet-Gilles. | ||||
* | Fix #1679: "0x" was taken as a valid integer literal. | Georg Brandl | 2008-01-19 | 1 | -0/+2 |
| | | | | | Fixes the tokenizer, tokenize.py and int() to reject this. Patches by Malte Helmert. | ||||
* | 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 |
| | | | | Contributed by John Lenton. | ||||
* | 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 |
| | | | | | | that will call .handle_timeout() method when no requests are received within the timeout period. | ||||
* | Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for a | Facundo Batista | 2008-01-19 | 1 | -0/+3 |
| | | | | | just-created (and empty) instance. Added tests for this. Thanks Jonathan Share. | ||||
* | 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 |
| | | | | Added builddoc.bat to Doc/ | ||||
* | Issue #1861: Add read-only attribute listing upcoming events in the order ↵ | Raymond Hettinger | 2008-01-17 | 1 | -0/+3 |
| | | | | they will be run. | ||||
* | Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339 | Gregory P. Smith | 2008-01-17 | 1 | -0/+6 |
| | | | | | | | | | - Factor out the duplication of EHLO/HELO in login() and sendmail() to a new function, ehlo_or_helo_if_needed(). - Use ehlo_or_helo_if_needed() in starttls() - Check for the starttls exception in starttls() in the same way as login() checks for the auth extension. Contributed by Bill Fenner. | ||||
* | entry for r60015 | Gregory P. Smith | 2008-01-17 | 1 | -0/+4 |
| | |||||
* | Make starmap() match its pure python definition and accept any itertable ↵ | Raymond Hettinger | 2008-01-17 | 1 | -0/+3 |
| | | | | input (not just tuples). | ||||
* | 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 |
| | | | | are used in a Structure or Union constructor. | ||||
* | Raise a TypeError if conflicting positional and named arguments are | Thomas Heller | 2008-01-16 | 1 | -0/+3 |
| | | | | passed to a Structure or Union constructor. | ||||
* | Convert the internal ctypes array type cache to a WeakValueDict so | Thomas Heller | 2008-01-16 | 1 | -0/+3 |
| | | | | that array types do not live longer than needed. | ||||
* | Issue #1786 (by myself): pdb should use its own stdin/stdout around an | Guido van Rossum | 2008-01-15 | 1 | -1/+5 |
| | | | | exec call and when creating a recursive instance. | ||||
* | 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 ↵ | Raymond Hettinger | 2008-01-15 | 2 | -0/+5 |
| | | | | | | or isinstance(t, tuple). Orignal patch (without tests) by Leif Walsh. |