summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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)
* typo fixGregory P. Smith2007-01-051-1/+1
|
* Backport:Neal Norwitz2007-01-052-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.5Gregory P. Smith2007-01-056-8/+19
| | | | [backport of r53252]
* Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,Martin v. Löwis2007-01-043-5/+37
| | | | to avoid relying on atexit.
* Fix stability of heapq's nlargest() and nsmallest().Raymond Hettinger2007-01-043-18/+16
|
* SF #1627373, fix typo in CarbonEvt.Neal Norwitz2007-01-041-1/+1
|
* For sets with cyclical reprs, emit '...' instead of recursing.Raymond Hettinger2006-12-293-4/+53
|
* Backport trunk checkin r51565:Thomas Wouters2006-12-293-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 docstringNeal Norwitz2006-12-291-1/+1
|
* Remove a stray (old) macro name left around (I guess)Neal Norwitz2006-12-281-2/+0
|
* Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument.Lars Gustäbel2006-12-273-0/+16
| | | | Backport from rev. 53161.
* Patch #1262036: Prevent TarFiles from being added to themselves underLars Gustäbel2006-12-233-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äbel2006-12-233-107/+167
| | | | | | work correctly together with readline(). (backport from rev. 53153)
* [Patch #827559 from Chris Gonnerman] Make SimpleHTTPServer redirect when a ↵Andrew M. Kuchling2006-12-222-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. Kuchling2006-12-222-0/+22
| | | | sub-directories
* Fix wrong markup of an argument in a method signature.Thomas Heller2006-12-211-1/+1
| | | | Backported from trunk.
* Mention the os.SEEK_* constantsAndrew M. Kuchling2006-12-213-9/+13
|
* [Bug #1619680] in_dll() arguments are documented in the wrong orderAndrew M. Kuchling2006-12-201-1/+1
|
* Backport doc changes from rev. 53112, 53115: use 'iterable' in variousAndrew M. Kuchling2006-12-201-43/+43
| | | | places instead of 'sequence'.
* Two grammar fixesAndrew M. Kuchling2006-12-201-2/+2
|
* Bug #1590891: random.randrange don't return correct value for big numberRaymond Hettinger2006-12-203-1/+11
|