summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
* Bug #1674503: close the file opened by execfile() in an error condition.Georg Brandl2007-03-061-0/+2
| | | | (backport)
* Patch #1671450: add a section about subclassing builtin types to theGeorg Brandl2007-03-061-0/+3
| | | | | "extending and embedding" tutorial. (backport from rev. 54150)
* Patch #1674228: when assigning a slice (old-style), check for theGeorg Brandl2007-03-051-0/+3
| | | | | sq_ass_slice instead of the sq_slice slot. (backport from rev. 54139)
* Fix constantification of None.Raymond Hettinger2007-03-021-0/+3
|
* Fix SF bug #1669182. Handle string exceptions even if unraisable (ie in ↵Neal Norwitz2007-02-261-0/+3
| | | | __del__).
* Backport 53901 and 53902 to prevent crash when there is an error decoding ↵Neal Norwitz2007-02-251-0/+2
| | | | unicode filenames
* Revert r53672, just fix signature of time_isoformat instead.Martin v. Löwis2007-02-181-1/+1
|
* Patch #1494140: Add documentation for the new struct.Struct object.Georg Brandl2007-02-151-0/+2
| | | | (backport from rev. 53785)
* Patch #1657276: Make NETLINK_DNRTMSG conditional.Martin v. Löwis2007-02-131-0/+2
|
* Patch #685268: Consider a package's __path__ in imputil.Martin v. Löwis2007-02-131-0/+2
|
* Patch 1463026: Support default namespace in XMLGenerator.Martin v. Löwis2007-02-121-0/+2
| | | | Fixes #847665.
* backport: fix trace.py --ignore-dirSkip Montanaro2007-02-111-0/+3
|
* Bug #1600860: Search for shared python library in LIBDIR, notMartin v. Löwis2007-02-091-0/+3
| | | | lib/python/config, on "linux" and "gnu" systems.
* Bug #1653736: Properly discard third argument to slot_nb_inplace_power.Martin v. Löwis2007-02-091-0/+2
|
* Bug #1653736: Complain about keyword arguments to time.isoformat.Martin v. Löwis2007-02-081-0/+2
|
* Do not let overflows in enumerate() and count() pass silently.Raymond Hettinger2007-02-071-0/+4
|
* Bug #1575169: operator.isSequenceType() now returns False for subclasses of ↵Raymond Hettinger2007-02-071-0/+2
| | | | dict.
* Check for a common user error with defaultdict().Raymond Hettinger2007-02-071-0/+2
|
* Applied patch 1124861.3.patch to solve bug #1124861: Automatically create ↵Peter Astrand2007-02-061-0/+3
| | | | pipes on Windows, if GetStdHandle fails. Backport from rev 53646.
* Bug #1648179: set.update() not recognizing __iter__ overrides in dict ↵Raymond Hettinger2007-02-011-0/+3
| | | | subclasses.
* [Patch #783050 from Patrick Lynch] The emulation of forkpty() is incorrect;Georg Brandl2007-01-311-0/+3
| | | | | | | | | | the master should close the slave fd. Added a test to test_pty.py that reads from the master_fd after doing a pty.fork(); without the fix it hangs forever instead of raising an exception. (<crossing fingers for the buildbots>) Backport from trunk rev. 53146.
* Patch #1638243: the compiler package is now able to correctly compileGeorg Brandl2007-01-271-0/+4
| | | | | | a with statement; previously, executing code containing a with statement compiled by the compiler package crashed the interpreter. (backport from rev. 53575)
* Backport fix for bug #1643943.Brett Cannon2007-01-251-0/+2
|
* Merged revisions 53556 via svnmerge fromThomas Heller2007-01-251-0/+2
| | | | | | | | | | | 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. ........
* 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-231-0/+3
| | | | | | | | 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-231-0/+3
| | | | frame's thread state. Fixes #1579370.
* Backport trunk revision 53527:Thomas Wouters2007-01-231-0/+2
| | | | | | | | | | | | | 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 #1552726] Avoid unnecessary polling at the interpreter prompt when ↵Andrew M. Kuchling2007-01-221-0/+2
| | | | certain versions of readline are being used
* Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. Backport from ↵Peter Astrand2007-01-211-0/+2
| | | | rev. 53295.
* Patch #1627441: close sockets properly in urllib2.Georg Brandl2007-01-211-0/+2
| | | | (backport from rev. 53511)
* Bug #1486663: don't reject keyword arguments for subclasses of builtinGeorg Brandl2007-01-211-0/+3
| | | | | types. (backport from rev. 53509)
* Prefix AST symbols with _Py_. Fixes #1637022.Martin v. Löwis2007-01-191-0/+2
|
* Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs.Georg Brandl2007-01-171-0/+3
| | | | (backport from rev. 53477)
* Bug #1610795: ctypes.util.find_library works now on BSD systems.Thomas Heller2007-01-171-0/+2
|
* - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092).Matthias Klose2007-01-111-0/+2
|
* Change the ctypes version number to "1.0.2".Thomas Heller2007-01-101-0/+2
|
* Fix zero-length corner case for iterating over a mutating deque.Raymond Hettinger2007-01-081-0/+3
|
* Backport:Neal Norwitz2007-01-051-0/+3
| | | | | | 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-051-0/+2
| | | | [backport of r53252]
* Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,Martin v. Löwis2007-01-041-0/+3
| | | | to avoid relying on atexit.
* Fix stability of heapq's nlargest() and nsmallest().Raymond Hettinger2007-01-041-0/+2
|
* For sets with cyclical reprs, emit '...' instead of recursing.Raymond Hettinger2006-12-291-0/+3
|
* Backport trunk checkin r51565:Thomas Wouters2006-12-291-0/+1
| | | | | Fix SF bug #1545837: array.array borks on deepcopy. array.__deepcopy__() needs to take an argument, even if it doesn't actually use it.
* Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument.Lars Gustäbel2006-12-271-0/+2
| | | | Backport from rev. 53161.
* Patch #1262036: Prevent TarFiles from being added to themselves underLars Gustäbel2006-12-231-3/+6
| | | | | | | | | 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-231-0/+3
| | | | | | work correctly together with readline(). (backport from rev. 53153)
* [Patch #827559 from Chris Gonnerman] Make SimpleHTTPServer redirect when a ↵Andrew M. Kuchling2006-12-221-0/+4
| | | | 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-221-0/+3
| | | | sub-directories
* Bug #1590891: random.randrange don't return correct value for big numberRaymond Hettinger2006-12-201-0/+2
|