summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Backport fix for bug #1643943.Brett Cannon2007-01-253-31/+36
|
* Merged revisions 53556 via svnmerge fromThomas Heller2007-01-252-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. Kuchling2007-01-241-8/+12
|
* Clarify bug #1377858 entry.Brett Cannon2007-01-231-1/+2
|
* If you created a weakref in an object's __del__ method to itself it wouldBrett Cannon2007-01-235-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 theMartin v. Löwis2007-01-232-1/+4
| | | | frame's thread state. Fixes #1579370.
* Backport trunk revision 53527:Thomas Wouters2007-01-234-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 Brandl2007-01-221-2/+12
| | | | (backport from rev. 53524)
* Bug #1249573: fix rfc822.parsedate not accepting a certain date formatGeorg Brandl2007-01-221-0/+5
| | | | (backport from rev. 53522)
* [Bug #1633678] Improve pattern used for mbox 'From' lines; add a simple testAndrew M. Kuchling2007-01-222-3/+38
|
* Make comment match the codeAndrew M. Kuchling2007-01-221-1/+1
|
* [Bug #1552726] Avoid unnecessary polling at the interpreter prompt when ↵Andrew M. Kuchling2007-01-222-1/+9
| | | | certain versions of readline are being used
* Update version of What's NewAndrew M. Kuchling2007-01-221-17/+27
|
* Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. Backport from ↵Peter Astrand2007-01-212-3/+6
| | | | rev. 53295.
* Patch #1627441: close sockets properly in urllib2.Georg Brandl2007-01-215-6/+63
| | | | (backport from rev. 53511)
* Bug #1486663: don't reject keyword arguments for subclasses of builtinGeorg Brandl2007-01-219-16/+62
| | | | | types. (backport from rev. 53509)
* Add /GS- to Itanium build.Martin v. Löwis2007-01-2015-16/+16
|
* Add /GS- flags for AMD64.Martin v. Löwis2007-01-204-3/+5
|
* SF# 1635892: Fix docs for betavariate's input parameters .Raymond Hettinger2007-01-192-2/+2
|
* Add UUIDs for 2.5.1 and 2.5.2Martin v. Löwis2007-01-191-0/+4
|
* Prefix AST symbols with _Py_. Fixes #1637022.Martin v. Löwis2007-01-193-88/+153
|
* SF #1635217, Fix unbalanced parenNeal Norwitz2007-01-191-1/+1
|
* Add a comment for some code I don't understand. Why would needsfreeNeal Norwitz2007-01-181-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 Brandl2007-01-172-2/+5
| | | | (backport from rev. 53477)
* Bug #1637967: missing //= operator in list.Georg Brandl2007-01-171-2/+2
| | | | (backport from rev. 53475)
* [Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and ↵Andrew M. Kuchling2007-01-171-25/+57
| | | | warn user to lock/unlock mailboxes when modifying them
* Bug #1610795: ctypes.util.find_library works now on BSD systems.Thomas Heller2007-01-171-0/+2
|
* Merged revisions 53402 via svnmerge fromThomas Heller2007-01-171-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 fromThomas Heller2007-01-171-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 WindowsPeter Astrand2007-01-132-1/+3
|
* Blocked revisions 53361 via svnmergeThomas Heller2007-01-120-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 svnmergeThomas Heller2007-01-120-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 svnmergeThomas Heller2007-01-120-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 Hettinger2007-01-112-2/+13
|
* - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092).Matthias Klose2007-01-112-1/+3
|
* - Make the documentation match the code and the docstringMatthias Klose2007-01-111-1/+1
|
* Must update the version number on the extension module as well.Thomas Heller2007-01-101-1/+1
|
* Change the ctypes version number to "1.0.2".Thomas Heller2007-01-102-1/+3
|
* Merged revisions 53316 via svnmerge fromThomas Heller2007-01-091-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 Hettinger2007-01-083-3/+11
|
* Backported changes from trunk:Vinay Sajip2007-01-081-3/+6
| | | | | Made func argument in LogRecord.__init__ optional. Improved performance of _fixupChildren.
* Backported change from trunk:Vinay Sajip2007-01-081-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 Sajip2007-01-081-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 Astrand2007-01-071-2/+6
| | | | 2.2. Fixes bug #1603424.
* update to (c) years to include 2007Anthony Baxter2007-01-067-11/+12
|
* Revisions 52418,52841,52855 have already been merged.Thomas Heller2007-01-050-0/+0
|
* Blocked revisions 52945 via svnmergeThomas Heller2007-01-050-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" doesThomas Heller2007-01-050-0/+0
| | | | not list them any longer.
* Initialized merge tracking via "svnmerge" with revisions "1-51333" fromThomas Heller2007-01-050-0/+0
| | | | svn+ssh://pythondev@svn.python.org/python/trunk/Lib/ctypes
* [Bug #1622533] Make docstrings raw strings because they contain control ↵Andrew M. Kuchling2007-01-052-2/+2
| | | | characters (\0, \1)