Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Backport fix for bug #1643943. | Brett Cannon | 2007-01-25 | 3 | -31/+36 |
| | |||||
* | Merged revisions 53556 via svnmerge from | Thomas Heller | 2007-01-25 | 2 | -8/+23 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk/Modules/_ctypes ........ r53556 | thomas.heller | 2007-01-25 19:34:14 +0100 (Do, 25 Jan 2007) | 3 lines Fix for #1643874: When calling SysAllocString, create a PyCObject which will eventually call SysFreeString to free the BSTR resource. ........ | ||||
* | Strengthen warning about using lock() | Andrew M. Kuchling | 2007-01-24 | 1 | -8/+12 |
| | |||||
* | Clarify bug #1377858 entry. | Brett Cannon | 2007-01-23 | 1 | -1/+2 |
| | |||||
* | If you created a weakref in an object's __del__ method to itself it would | Brett Cannon | 2007-01-23 | 5 | -1/+33 |
| | | | | | | | | segfault the interpreter during weakref clean up. Now any new weakrefs created after __del__ is run are removed silently. Fixes bug #1377858 and the weakref_in_del crasher for new-style classes. Classic classes are still affected. | ||||
* | Make PyTraceBack_Here use the current thread, not the | Martin v. Löwis | 2007-01-23 | 2 | -1/+4 |
| | | | | frame's thread state. Fixes #1579370. | ||||
* | Backport trunk revision 53527: | Thomas Wouters | 2007-01-23 | 4 | -6/+13 |
| | | | | | | | | | | | | | SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize When running the interpreter in an environment that would cause it to set stdout/stderr/stdin's encoding, having a sitecustomize that would replace them with something other than PyFile objects would crash the interpreter. Fix it by simply ignoring the encoding-setting for non-files. This could do with a test, but I can think of no maintainable and portable way to test this bug, short of adding a sitecustomize.py to the buildsystem and have it always run with it (hmmm....) | ||||
* | Bug #1627316: handle error in condition/ignore pdb commands more gracefully. | Georg Brandl | 2007-01-22 | 1 | -2/+12 |
| | | | | (backport from rev. 53524) | ||||
* | Bug #1249573: fix rfc822.parsedate not accepting a certain date format | Georg Brandl | 2007-01-22 | 1 | -0/+5 |
| | | | | (backport from rev. 53522) | ||||
* | [Bug #1633678] Improve pattern used for mbox 'From' lines; add a simple test | Andrew M. Kuchling | 2007-01-22 | 2 | -3/+38 |
| | |||||
* | Make comment match the code | Andrew M. Kuchling | 2007-01-22 | 1 | -1/+1 |
| | |||||
* | [Bug #1552726] Avoid unnecessary polling at the interpreter prompt when ↵ | Andrew M. Kuchling | 2007-01-22 | 2 | -1/+9 |
| | | | | certain versions of readline are being used | ||||
* | Update version of What's New | Andrew M. Kuchling | 2007-01-22 | 1 | -17/+27 |
| | |||||
* | Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. Backport from ↵ | Peter Astrand | 2007-01-21 | 2 | -3/+6 |
| | | | | rev. 53295. | ||||
* | Patch #1627441: close sockets properly in urllib2. | Georg Brandl | 2007-01-21 | 5 | -6/+63 |
| | | | | (backport from rev. 53511) | ||||
* | Bug #1486663: don't reject keyword arguments for subclasses of builtin | Georg Brandl | 2007-01-21 | 9 | -16/+62 |
| | | | | | types. (backport from rev. 53509) | ||||
* | Add /GS- to Itanium build. | Martin v. Löwis | 2007-01-20 | 15 | -16/+16 |
| | |||||
* | Add /GS- flags for AMD64. | Martin v. Löwis | 2007-01-20 | 4 | -3/+5 |
| | |||||
* | SF# 1635892: Fix docs for betavariate's input parameters . | Raymond Hettinger | 2007-01-19 | 2 | -2/+2 |
| | |||||
* | Add UUIDs for 2.5.1 and 2.5.2 | Martin v. Löwis | 2007-01-19 | 1 | -0/+4 |
| | |||||
* | Prefix AST symbols with _Py_. Fixes #1637022. | Martin v. Löwis | 2007-01-19 | 3 | -88/+153 |
| | |||||
* | SF #1635217, Fix unbalanced paren | Neal Norwitz | 2007-01-19 | 1 | -1/+1 |
| | |||||
* | Add a comment for some code I don't understand. Why would needsfree | Neal Norwitz | 2007-01-18 | 1 | -0/+1 |
| | | | | | | | be true if we didn't malloc the code? Seems like the code is wrong or could use comments. Also verify if the buildbots are working properly for the 2.5 branch. | ||||
* | Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs. | Georg Brandl | 2007-01-17 | 2 | -2/+5 |
| | | | | (backport from rev. 53477) | ||||
* | Bug #1637967: missing //= operator in list. | Georg Brandl | 2007-01-17 | 1 | -2/+2 |
| | | | | (backport from rev. 53475) | ||||
* | [Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and ↵ | Andrew M. Kuchling | 2007-01-17 | 1 | -25/+57 |
| | | | | warn user to lock/unlock mailboxes when modifying them | ||||
* | Bug #1610795: ctypes.util.find_library works now on BSD systems. | Thomas Heller | 2007-01-17 | 1 | -0/+2 |
| | |||||
* | Merged revisions 53402 via svnmerge from | Thomas Heller | 2007-01-17 | 1 | -28/+50 |
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk/Lib/ctypes ........ r53402 | thomas.heller | 2007-01-12 21:17:34 +0100 (Fr, 12 Jan 2007) | 6 lines patch #1610795: BSD version of ctypes.util.find_library, by Martin Kammerhofer. Backported from trunk. ........ | ||||
* | Merged revisions 53466 via svnmerge from | Thomas Heller | 2007-01-17 | 1 | -8/+12 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk/Modules/_ctypes ........ r53466 | thomas.heller | 2007-01-17 10:40:34 +0100 (Mi, 17 Jan 2007) | 2 lines Replace C++ comments with C comments. ........ | ||||
* | Fix for bug #1634343: allow specifying empty arguments on Windows | Peter Astrand | 2007-01-13 | 2 | -1/+3 |
| | |||||
* | Blocked revisions 53361 via svnmerge | Thomas Heller | 2007-01-12 | 0 | -0/+0 |
| | | | | | | | | ........ r53361 | thomas.heller | 2007-01-10 21:51:19 +0100 (Wed, 10 Jan 2007) | 1 line Must change the version number in the _ctypes extension as well. ........ | ||||
* | Blocked revisions 52388 via svnmerge | Thomas Heller | 2007-01-12 | 0 | -0/+0 |
| | | | | | | | | | ........ r52388 | martin.v.loewis | 2006-10-19 13:00:37 +0200 (Thu, 19 Oct 2006) | 3 lines Fix various minor errors in passing arguments to PyArg_ParseTuple. ........ | ||||
* | Blocked revisions 52945,53358 via svnmerge | Thomas Heller | 2007-01-12 | 0 | -0/+0 |
| | | | | | | | | | | | | | ........ r52945 | brett.cannon | 2006-12-07 00:38:48 +0100 (Thu, 07 Dec 2006) | 3 lines Fix a bad assumption that all objects assigned to '__loader__' on a module will have a '_files' attribute. ........ r53358 | thomas.heller | 2007-01-10 21:12:13 +0100 (Wed, 10 Jan 2007) | 1 line Change the ctypes version number to "1.1.0". ........ | ||||
* | SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). | Raymond Hettinger | 2007-01-11 | 2 | -2/+13 |
| | |||||
* | - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092). | Matthias Klose | 2007-01-11 | 2 | -1/+3 |
| | |||||
* | - Make the documentation match the code and the docstring | Matthias Klose | 2007-01-11 | 1 | -1/+1 |
| | |||||
* | Must update the version number on the extension module as well. | Thomas Heller | 2007-01-10 | 1 | -1/+1 |
| | |||||
* | Change the ctypes version number to "1.0.2". | Thomas Heller | 2007-01-10 | 2 | -1/+3 |
| | |||||
* | Merged revisions 53316 via svnmerge from | Thomas Heller | 2007-01-09 | 1 | -0/+28 |
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk/Lib/ctypes ........ r53316 | thomas.heller | 2007-01-09 20:19:33 +0100 (Di, 09 Jan 2007) | 4 lines Verify the sizes of the basic ctypes data types against the struct module. Backport from trunk. ........ | ||||
* | Fix zero-length corner case for iterating over a mutating deque. | Raymond Hettinger | 2007-01-08 | 3 | -3/+11 |
| | |||||
* | Backported changes from trunk: | Vinay Sajip | 2007-01-08 | 1 | -3/+6 |
| | | | | | Made func argument in LogRecord.__init__ optional. Improved performance of _fixupChildren. | ||||
* | Backported change from trunk: | Vinay Sajip | 2007-01-08 | 1 | -2/+2 |
| | | | | Made SysLogHandler more resilient in the face of syslogd failures. | ||||
* | Added relativeCreated to Formatter doc (has been in the system for a long ↵ | Vinay Sajip | 2007-01-08 | 1 | -4/+9 |
| | | | | | | | time - was unaccountably left out of the docs and not noticed until now). Documentation clarified to mention optional parameters. Documentation omitted the additional parameter to LogRecord.__init__ which was added in 2.5. (See SF #1569622). | ||||
* | Re-implemented fix for #1531862 once again, in a way that works with Python ↵ | Peter Astrand | 2007-01-07 | 1 | -2/+6 |
| | | | | 2.2. Fixes bug #1603424. | ||||
* | update to (c) years to include 2007 | Anthony Baxter | 2007-01-06 | 7 | -11/+12 |
| | |||||
* | Revisions 52418,52841,52855 have already been merged. | Thomas Heller | 2007-01-05 | 0 | -0/+0 |
| | |||||
* | Blocked revisions 52945 via svnmerge | Thomas Heller | 2007-01-05 | 0 | -0/+0 |
| | | | | | | | | | ........ r52945 | brett.cannon | 2006-12-07 00:38:48 +0100 (Thu, 07 Dec 2006) | 3 lines Fix a bad assumption that all objects assigned to '__loader__' on a module will have a '_files' attribute. ........ | ||||
* | Mark changes already backported as merged, so "svnmerge avail" does | Thomas Heller | 2007-01-05 | 0 | -0/+0 |
| | | | | not list them any longer. | ||||
* | Initialized merge tracking via "svnmerge" with revisions "1-51333" from | Thomas Heller | 2007-01-05 | 0 | -0/+0 |
| | | | | svn+ssh://pythondev@svn.python.org/python/trunk/Lib/ctypes | ||||
* | [Bug #1622533] Make docstrings raw strings because they contain control ↵ | Andrew M. Kuchling | 2007-01-05 | 2 | -2/+2 |
| | | | | characters (\0, \1) |