Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add itertools.izip_longest(). | Raymond Hettinger | 2007-02-21 | 1 | -0/+2 |
| | |||||
* | Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() | Martin v. Löwis | 2007-02-19 | 2 | -0/+4 |
| | | | | functions on platforms where the underlying system calls are available. | ||||
* | Moved misplaced news item. | Lars Gustäbel | 2007-02-19 | 1 | -3/+3 |
| | |||||
* | Add merge() function to heapq. | Raymond Hettinger | 2007-02-19 | 1 | -0/+2 |
| | |||||
* | Update the encoding package's search function to use absolute imports when | Brett Cannon | 2007-02-15 | 1 | -0/+3 |
| | | | | | | | | | | | | calling __import__. This helps make the expected search locations for encoding modules be more explicit. One could use an explicit value for __path__ when making the call to __import__ to force the exact location searched for encodings. This would give the most strict search path possible if one is worried about malicious code being imported. The unfortunate side-effect of that is that if __path__ was modified on 'encodings' on purpose in a safe way it would not be picked up in future __import__ calls. | ||||
* | Patch #1494140: Add documentation for the new struct.Struct object. | Georg Brandl | 2007-02-15 | 1 | -0/+2 |
| | |||||
* | Patch #1432399: Add HCI sockets. | Martin v. Löwis | 2007-02-14 | 1 | -0/+2 |
| | |||||
* | Patch #1647484: Renamed GzipFile's filename attribute to name. The | Lars Gustäbel | 2007-02-13 | 1 | -0/+2 |
| | | | | | filename attribute is still accessible as a property that emits a DeprecationWarning. | ||||
* | Patch #1657276: Make NETLINK_DNRTMSG conditional. | Martin v. Löwis | 2007-02-13 | 1 | -0/+2 |
| | | | | Will backport. | ||||
* | Patch #1517891: Make 'a' create the file if it doesn't exist. | Martin v. Löwis | 2007-02-13 | 1 | -0/+3 |
| | | | | Fixes #1514451. | ||||
* | Patch #698833: Support file decryption in zipfile. | Martin v. Löwis | 2007-02-13 | 1 | -0/+2 |
| | |||||
* | Patch #685268: Consider a package's __path__ in imputil. | Martin v. Löwis | 2007-02-13 | 1 | -0/+2 |
| | | | | Will backport. | ||||
* | Patch 1463026: Support default namespace in XMLGenerator. | Martin v. Löwis | 2007-02-12 | 1 | -0/+2 |
| | | | | Fixes #847665. Will backport. | ||||
* | fix trace.py --ignore-dir | Skip Montanaro | 2007-02-11 | 1 | -0/+3 |
| | |||||
* | Bug #1600860: Search for shared python library in LIBDIR, not | Martin v. Löwis | 2007-02-09 | 1 | -0/+3 |
| | | | | | lib/python/config, on "linux" and "gnu" systems. Will backport. | ||||
* | Bug #1653736: Properly discard third argument to slot_nb_inplace_power. | Martin v. Löwis | 2007-02-09 | 1 | -0/+2 |
| | | | | Will backport. | ||||
* | Bug #1653736: Complain about keyword arguments to time.isoformat. | Martin v. Löwis | 2007-02-08 | 1 | -0/+2 |
| | | | | Will backport to 2.5. | ||||
* | Patch #1652681: create nonexistent files in append mode and | Lars Gustäbel | 2007-02-06 | 1 | -0/+3 |
| | | | | allow appending to empty files. | ||||
* | Applied patch 1124861.3.patch to solve bug #1124861: Automatically create ↵ | Peter Astrand | 2007-02-06 | 1 | -0/+3 |
| | | | | pipes on Windows, if GetStdHandle fails. Will backport. | ||||
* | No more raising of string exceptions! | Brett Cannon | 2007-01-30 | 1 | -0/+3 |
| | | | | | | | The next step of PEP 352 (for 2.6) causes raising a string exception to trigger a TypeError. Trying to catch a string exception raises a DeprecationWarning. References to string exceptions has been removed from the docs since they are now just an error. | ||||
* | Add a test for slicing an exception. | Brett Cannon | 2007-01-29 | 1 | -0/+2 |
| | |||||
* | Patch #1634778: add missing encoding aliases for iso8859_15 and | Georg Brandl | 2007-01-27 | 1 | -0/+3 |
| | | | | iso8859_16. | ||||
* | Patch #1638243: the compiler package is now able to correctly compile | Georg Brandl | 2007-01-27 | 1 | -0/+4 |
| | | | | | a with statement; previously, executing code containing a with statement compiled by the compiler package crashed the interpreter. | ||||
* | Fix time.strptime's %U support. Basically rewrote the algorithm to be more | Brett Cannon | 2007-01-25 | 1 | -3/+5 |
| | | | | | | | | | generic so that one only has to shift certain values based on whether the week was specified to start on Monday or Sunday. Cut out a lot of edge case code compared to the previous version. Also broke algorithm out into its own function (that is private to the module). Fixes bug #1643943 (thanks Biran Nahas for the report). | ||||
* | Fix for #1643874: When calling SysAllocString, create a PyCObject | Thomas Heller | 2007-01-25 | 1 | -0/+2 |
| | | | | which will eventually call SysFreeString to free the BSTR resource. | ||||
* | Fix crasher for when an object's __del__ creates a new weakref to itself. | Brett Cannon | 2007-01-23 | 1 | -0/+4 |
| | | | | | | Patch only fixes new-style classes; classic classes still buggy. Closes bug #1377858. Already backported. | ||||
* | Make PyTraceBack_Here use the current thread, not the | Martin v. Löwis | 2007-01-23 | 1 | -0/+3 |
| | | | | | frame's thread state. Fixes #1579370. Will backport. | ||||
* | Add news entry about last checkin (oops.) | Thomas Wouters | 2007-01-23 | 1 | -0/+2 |
| | |||||
* | Patch #1507247: tarfile.py: use current umask for intermediate | Lars Gustäbel | 2007-01-23 | 1 | -0/+3 |
| | | | | directories. | ||||
* | Patch #1627441: close sockets properly in urllib2. | Georg Brandl | 2007-01-21 | 1 | -0/+2 |
| | |||||
* | Bug #1486663: don't reject keyword arguments for subclasses of builtin | Georg Brandl | 2007-01-21 | 1 | -0/+3 |
| | | | | types. | ||||
* | Patch #1610575: Add support for _Bool to struct. | Martin v. Löwis | 2007-01-21 | 1 | -0/+3 |
| | |||||
* | Prefix AST symbols with _Py_. Fixes #1637022. | Martin v. Löwis | 2007-01-19 | 1 | -0/+2 |
| | | | | Will backport. | ||||
* | Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs. | Georg Brandl | 2007-01-17 | 1 | -0/+3 |
| | |||||
* | Remove Calvin since he only has access to the website currently. | Neal Norwitz | 2007-01-17 | 1 | -3/+0 |
| | |||||
* | Give Calvin Spealman access for python-dev summaries. | Neal Norwitz | 2007-01-17 | 1 | -0/+3 |
| | |||||
* | Fixed ntpath.expandvars to not replace references to non-existing | Sjoerd Mullender | 2007-01-16 | 1 | -0/+2 |
| | | | | | variables with nothing. Also added tests. This fixes bug #494589. | ||||
* | Add news items for the recent pybench and platform changes. | Marc-André Lemburg | 2007-01-16 | 1 | -0/+22 |
| | |||||
* | Patch #1635058 by Mark Roberts: ensure that htonl and friends never accept or | Guido van Rossum | 2007-01-14 | 2 | -0/+4 |
| | | | | return negative numbers, per the underlying C implementation. | ||||
* | Deprecate the sets module. | Brett Cannon | 2007-01-13 | 1 | -0/+3 |
| | |||||
* | patch #1610795: BSD version of ctypes.util.find_library, by Martin | Thomas Heller | 2007-01-12 | 1 | -0/+2 |
| | | | | Kammerhofer. | ||||
* | Fixes for 64-bit Windows: In ctypes.wintypes, correct the definitions | Thomas Heller | 2007-01-11 | 1 | -0/+4 |
| | | | | | of HANDLE, WPARAM, LPARAM data types. Make parameterless foreign function calls work. | ||||
* | - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092). | Matthias Klose | 2007-01-11 | 1 | -0/+2 |
| | |||||
* | Change the ctypes version number to "1.1.0". | Thomas Heller | 2007-01-10 | 1 | -0/+2 |
| | |||||
* | Added entry about addition of _open() method to logging.FileHandler. | Vinay Sajip | 2007-01-09 | 1 | -0/+4 |
| | |||||
* | Added entries about removal of some bare except clauses from logging. | Vinay Sajip | 2007-01-08 | 1 | -0/+9 |
| | |||||
* | Add Josiah to SF for maintaining asyncore/asynchat | Neal Norwitz | 2007-01-06 | 1 | -0/+3 |
| | |||||
* | Add Collin Winter for access to update PEP 3107 | Neal Norwitz | 2007-01-05 | 1 | -0/+3 |
| | |||||
* | Prevent crash on shutdown which can occur if we are finalizing | Neal Norwitz | 2007-01-05 | 1 | -0/+3 |
| | | | | | | | and the module dict has been cleared already and some object raises a warning (like in a __del__). Will backport. | ||||
* | Support linking of the bsddb module against BerkeleyDB 4.5.x | Gregory P. Smith | 2007-01-05 | 1 | -0/+2 |
| | | | | (will backport to 2.5) |