- 05 Nov, 2004 2 commits
-
-
Fred Drake authored
(closes SF bug #948517)
-
Fred Drake authored
- add a command-line option to control the image type
-
- 04 Nov, 2004 6 commits
-
-
Tim Peters authored
Bugfix candidate (the vagaries aren't new <wink>), but I don't intend to backport this.
-
Armin Rigo authored
* explanation for example with lists of lists made confusing use of the word "contains" to mean "is built out of". * wrong formula for slices with step. Is it ok to use LaTeX formulas (which become images in the html document)? This version needs one because it's based on a fraction. Just writing "\code{(j-i)/k}" here would be ambiguous because it looks like a rounding-down-to-the-previous-integer division, which is not what we need here. Of course we could write "\code{float(j-i)/k}" but it just looks confusing.
-
Fred Drake authored
-
Anthony Baxter authored
-
Skip Montanaro authored
avoiding use of popen.
-
Fred Drake authored
(closes SF patch #1054715; backporting to release23-maint branch)
-
- 03 Nov, 2004 2 commits
-
-
cvs2svn authored
-
Anthony Baxter authored
-
- 02 Nov, 2004 10 commits
-
-
Martin v. Löwis authored
Fixes #1049003.
-
Martin v. Löwis authored
-
Fred Drake authored
-
Fred Drake authored
(SF bug #829073)
-
Fred Drake authored
(SF bug #829073)
-
Fred Drake authored
(SF bug #798652)
-
Fred Drake authored
(closes SF bug #621057) - add missing whitespace around assignment operator
-
Anthony Baxter authored
-
Raymond Hettinger authored
everytime a LOAD_CONSTANT is encountered, created, or overwritten. Added two tests to cover cases affected by the patch.
-
Raymond Hettinger authored
-
- 01 Nov, 2004 9 commits
-
-
Raymond Hettinger authored
reliably on WinME with FAT32. * Native speaker rewrite of the comment block. * Removed unnecessary backslashes from the multi-line function defintions.
-
Walter Dörwald authored
Add function names to various PyArg_ParseTuple calls in bz2module.c.
-
Tim Peters authored
nothing in gc currently cares, the original coding could screw up if, e.g., you tried to move a node to the list it's already in, and the node was already the last in its list.
-
Raymond Hettinger authored
No longer assumes that the input is NOP free.
-
Hye-Shik Chang authored
in some platforms.
-
Barry Warsaw authored
containing these functions. (I will backport to Python 2.3)
-
Barry Warsaw authored
raise a ValueError for dangling delimiters (the delimiter itself is returned).
-
Tim Peters authored
-
Tim Peters authored
Introduced gc_list_move(), which captures the common gc_list_remove() + gc_list_append() sequence. In fact, no uses of gc_list_append() remained (they were all in a gc_list_move() sequence), so commented that one out. gc_list_merge(): assert that `from` != `to`; that was an implicit precondition, now verified in a debug build. Others: added comments about their purpose.
-
- 31 Oct, 2004 4 commits
-
-
Tim Peters authored
pass over the unreachable weakrefs-with-callbacks to unreachable objects.
-
Johannes Gijsbers authored
-
Johannes Gijsbers authored
Rewrite rmtree again, this time without os.walk(). Error handling had been broken since Python 2.3, and the os.walk() version inherited this.
-
Raymond Hettinger authored
-
- 30 Oct, 2004 3 commits
-
-
Tim Peters authored
In cyclic gc, clear weakrefs to unreachable objects before allowing any Python code (weakref callbacks or __del__ methods) to run. This is a critical bugfix, affecting all versions of Python since weakrefs were introduced. I'll backport to 2.3.
-
Armin Rigo authored
-
Raymond Hettinger authored
* Use simpler, faster two pass algorithm for markblocks(). * Free the blocks variable if not NULL and exiting without change. * Verify that the rest of the compiler has not set an exception. * Make the test for tuple of constants less restrictive. * Embellish the comment for chained conditional jumps.
-
- 29 Oct, 2004 3 commits
-
-
Fred Drake authored
-
Fred Drake authored
- always include a space after the "#" that starts a comment - easier to read imports
-
Vinay Sajip authored
-
- 28 Oct, 2004 1 commit
-
-
Armin Rigo authored
exposed in header files. Fixed a few comments in these headers. As we might have expected, writing down invariants systematically exposed a (minor) bug. In this case, function objects have a writeable func_code attribute, which could be set to code objects with the wrong number of free variables. Calling the resulting function segfaulted the interpreter. Added a corresponding test.
-