- 09 Oct, 2007 4 commits
-
-
Gregory P. Smith authored
sourceforge pybsddb patch 1551443 by w_barnes.
-
Gregory P. Smith authored
string key (and probably a few other situations with string keys). This was reported with a patch as pybsddb sourceforge bug 1708868 by jjjhhhlll at gmail.
-
Gregory P. Smith authored
object available as bsddb.db.api. This is based on the patch submitted by Duncan Grisby here: http://sourceforge.net/tracker/index.php?func=detail&aid=1551895&group_id=13900&atid=313900 See this thread for additional info: http://sourceforge.net/mailarchive/forum.php?thread_name=E1GAVDK-0002rk-Iw%40apasphere.com&forum_name=pybsddb-users It also cleans up the code a little by removing some ifdef/endifs for python prior to 2.1 and for unsupported Berkeley DB <= 3.2.
-
Raymond Hettinger authored
-
- 08 Oct, 2007 8 commits
-
-
Andrew M. Kuchling authored
-
Raymond Hettinger authored
-
Georg Brandl authored
No need to merge this to py3k!
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
Let the field spec be either a string or a non-string sequence (suggested by Martin Blais with use cases). Improve the error message in the case of a SyntaxError (caused by a duplicate field name).
-
Georg Brandl authored
-
Georg Brandl authored
Also expand a few other methods' docs, which had more info in the deprecated string module docs.
-
- 06 Oct, 2007 4 commits
-
-
Neal Norwitz authored
Also use the safe unlink in test_support instead of rolling our own here.
-
Gregory P. Smith authored
reliable. gmail.org is someones personal domain.
-
Gregory P. Smith authored
-
Gregory P. Smith authored
ubuntu buildbots.
-
- 05 Oct, 2007 8 commits
-
-
Raymond Hettinger authored
-
Neal Norwitz authored
-
Neal Norwitz authored
This code was broken if save() returned a negative number since i contained a boolean value and then we compared i < 0 which should never be true. Will backport (assuming it's necessary)
-
Neal Norwitz authored
-
Neal Norwitz authored
Fix a compiler warning about passing a PyTypeObject* instead of PyObject*.
-
-
Raymond Hettinger authored
Add maxlen support to deque() and fixup docs. Partially fix __reduce__(). The None as a third arg was no longer supported. Still needs work on __reduce__() to handle recursive inputs.
-
Fred Drake authored
-
- 04 Oct, 2007 7 commits
-
-
Neal Norwitz authored
All this code already exists above starting at line 653.
-
Kurt B. Kaiser authored
-
Kurt B. Kaiser authored
M idlelib/EditorWindow.py M idlelib/aboutDialog.py M idlelib/textView.py M idlelib/NEWS.txt
-
Kurt B. Kaiser authored
-
Kurt B. Kaiser authored
-
Kurt B. Kaiser authored
something he didn't select or complete.
-
Raymond Hettinger authored
-
- 03 Oct, 2007 2 commits
-
-
Raymond Hettinger authored
enumerate() is no longer bounded to using sequences shorter than LONG_MAX. The possibility of overflow was sending some newsgroup posters into a tizzy.
-
Mark Summerfield authored
unicodedata.normalize().
-
- 02 Oct, 2007 2 commits
-
-
Facundo Batista authored
available when necessary without recomputing. Thanks Mark Dickinson
-
Facundo Batista authored
with Cawlishaw by mail, and he basically confirmed that to these is_* operations, there's no need to return Decimal(0) and Decimal(1) if the language supports the False and True booleans. Also added a few tests for the these functions in extra.decTest, since they are mostly untested (apart from the doctests). Thanks Mark Dickinson
-
- 30 Sep, 2007 2 commits
-
-
Brett Cannon authored
don't worry about any self-referring tuples.
-
Brett Cannon authored
Python code; but it is possible from C. object.__str__ had the issue of not expecting a type to doing something within it's tp_str implementation that could trigger an infinite recursion, but it could in C code.. Both found thanks to BaseException and how it handles its repr. Closes issue #1686386. Thanks to Thomas Herve for taking an initial stab at coming up with a solution.
-
- 27 Sep, 2007 3 commits
-
-
Vinay Sajip authored
Change to LogRecord.__init__() to fix #1206. Note that archaic use of type(x) == types.DictType is because of keeping 1.5.2 compatibility. While this is much less relevant these days, there probably needs to be a separate commit for removing all archaic constructs at the same time.
-
Vinay Sajip authored
-
Georg Brandl authored
-