- 14 Nov, 2007 2 commits
-
-
Raymond Hettinger authored
-
Georg Brandl authored
-
- 13 Nov, 2007 1 commit
-
-
Amaury Forgeot d'Arc authored
Correction for issue1265 (pdb bug with "with" statement). When an unfinished generator-iterator is garbage collected, PyEval_EvalFrameEx is called with a GeneratorExit exception set. This leads to funny results if the sys.settrace function itself makes use of generators. A visible effect is that the settrace function is reset to None. Another is that the eventual "finally" block of the generator is not called. It is necessary to save/restore the exception around the call to the trace function. This happens a lot with py3k: isinstance() of an ABCMeta instance runs def __instancecheck__(cls, instance): """Override for isinstance(instance, cls).""" return any(cls.__subclasscheck__(c) for c in {instance.__class__, type(instance)}) which lets an opened generator expression each time it returns True. Backport candidate, even if the case is less frequent in 2.5.
-
- 12 Nov, 2007 8 commits
-
-
Guido van Rossum authored
-
Christian Heimes authored
fixed indention to tabs use Py_RETURN_NONE macro added more error checks to on_completion_display_matches_hook open question: Does PyList_SetItem(l, i, o) steal a reference to o in the case of an error?
-
Walter Dörwald authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
is a Python hook function. Fixes #1425.
-
Andrew M. Kuchling authored
-
Christian Heimes authored
the prweek() method is still broken and I can't figure out how it suppose to work.
-
Christian Heimes authored
Guido prefers _x over __x.
-
- 11 Nov, 2007 2 commits
-
-
Georg Brandl authored
-
Vinay Sajip authored
Fixed a bug reported (in private email, by Robert Crida) in logging configuration whereby child loggers of a logger named in a configuration file, which are not themselves named in the configuration, are disabled when the configuration is applied.
-
- 10 Nov, 2007 2 commits
-
-
Guido van Rossum authored
used as decorators to create fully-populated properties.
-
Raymond Hettinger authored
-
- 09 Nov, 2007 5 commits
-
-
Raymond Hettinger authored
-
Martin v. Löwis authored
-
Georg Brandl authored
tests don't run directly on import.
-
Georg Brandl authored
-
Georg Brandl authored
-
- 08 Nov, 2007 2 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 07 Nov, 2007 6 commits
-
-
Christian Heimes authored
-
Christian Heimes authored
-
Nick Coghlan authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 06 Nov, 2007 2 commits
-
-
Guido van Rossum authored
-
Gregory P. Smith authored
hashes with a block size other than 64 bytes (such as sha384 and sha512).
-
- 05 Nov, 2007 6 commits
-
-
Mark Summerfield authored
members even though comments to the archive itself aren't currently supported.
-
Mark Summerfield authored
-
Gregory P. Smith authored
-
Gregory P. Smith authored
* get compiling with older versions of python again for a stand alone release.
-
Gregory P. Smith authored
Improve test_lock's tempdir creation and cleanup.
-
Gregory P. Smith authored
pay attention to them when opening an existing database. This means that d[] behaves properly even on databases previously created with DB_DUP or DB_DUPSORT flags to allow duplicate keys. http://sourceforge.net/tracker/index.php?func=detail&aid=477182&group_id=13900&atid=113900 Do not backport, this bugfix could be considered an API change.
-
- 04 Nov, 2007 2 commits
-
-
Georg Brandl authored
-
Skip Montanaro authored
-
- 03 Nov, 2007 1 commit
-
-
Brett Cannon authored
-
- 02 Nov, 2007 1 commit
-
-
Georg Brandl authored
I hope the concept of hashability is better understandable now. Thanks to Tim Hatch for pointing out the flaws here.
-