Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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) | ||||
* | typo fix | Gregory P. Smith | 2007-01-05 | 1 | -1/+1 |
| | |||||
* | Backport: | Neal Norwitz | 2007-01-05 | 2 | -1/+5 |
| | | | | | | Prevent crash on shutdown which can occur if we are finalizing and the module dict has been cleared already and some object raises a warning (like in a __del__). | ||||
* | support linking the _bsddb extension module against BerkeleyDB 4.5 | Gregory P. Smith | 2007-01-05 | 6 | -8/+19 |
| | | | | [backport of r53252] | ||||
* | Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, | Martin v. Löwis | 2007-01-04 | 3 | -5/+37 |
| | | | | to avoid relying on atexit. | ||||
* | Fix stability of heapq's nlargest() and nsmallest(). | Raymond Hettinger | 2007-01-04 | 3 | -18/+16 |
| | |||||
* | SF #1627373, fix typo in CarbonEvt. | Neal Norwitz | 2007-01-04 | 1 | -1/+1 |
| | |||||
* | For sets with cyclical reprs, emit '...' instead of recursing. | Raymond Hettinger | 2006-12-29 | 3 | -4/+53 |
| | |||||
* | Backport trunk checkin r51565: | Thomas Wouters | 2006-12-29 | 3 | -1/+9 |
| | | | | | Fix SF bug #1545837: array.array borks on deepcopy. array.__deepcopy__() needs to take an argument, even if it doesn't actually use it. | ||||
* | SF bug #1623890, fix argument name in docstring | Neal Norwitz | 2006-12-29 | 1 | -1/+1 |
| | |||||
* | Remove a stray (old) macro name left around (I guess) | Neal Norwitz | 2006-12-28 | 1 | -2/+0 |
| | |||||
* | Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument. | Lars Gustäbel | 2006-12-27 | 3 | -0/+16 |
| | | | | Backport from rev. 53161. | ||||
* | Patch #1262036: Prevent TarFiles from being added to themselves under | Lars Gustäbel | 2006-12-23 | 3 | -30/+26 |
| | | | | | | | | | certain conditions. (backport from rev. 53155) Moved message from my previous change to the right place in Misc/NEWS. | ||||
* | Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell() | Lars Gustäbel | 2006-12-23 | 3 | -107/+167 |
| | | | | | | work correctly together with readline(). (backport from rev. 53153) | ||||
* | [Patch #827559 from Chris Gonnerman] Make SimpleHTTPServer redirect when a ↵ | Andrew M. Kuchling | 2006-12-22 | 2 | -0/+10 |
| | | | | directory URL is missing the trailing slash; this lets relative links work. | ||||
* | [Bug #737202; fix from Titus Brown] Make CGIHTTPServer work for scripts in ↵ | Andrew M. Kuchling | 2006-12-22 | 2 | -0/+22 |
| | | | | sub-directories | ||||
* | Fix wrong markup of an argument in a method signature. | Thomas Heller | 2006-12-21 | 1 | -1/+1 |
| | | | | Backported from trunk. | ||||
* | Mention the os.SEEK_* constants | Andrew M. Kuchling | 2006-12-21 | 3 | -9/+13 |
| | |||||
* | [Bug #1619680] in_dll() arguments are documented in the wrong order | Andrew M. Kuchling | 2006-12-20 | 1 | -1/+1 |
| | |||||
* | Backport doc changes from rev. 53112, 53115: use 'iterable' in various | Andrew M. Kuchling | 2006-12-20 | 1 | -43/+43 |
| | | | | places instead of 'sequence'. | ||||
* | Two grammar fixes | Andrew M. Kuchling | 2006-12-20 | 1 | -2/+2 |
| | |||||
* | Bug #1590891: random.randrange don't return correct value for big number | Raymond Hettinger | 2006-12-20 | 3 | -1/+11 |
| |