- 02 May, 2002 15 commits
-
-
Martin v. Löwis authored
-
Fred Drake authored
-
Fred Drake authored
"What's New in Python 2.2" documented that these would be removed in Python 2.3.
-
Fred Drake authored
-
Fred Drake authored
-
Martin v. Löwis authored
-
Fred Drake authored
See SF bug #551285.
-
Fred Drake authored
handlers were both set, but were not compatible. This change uses only the tp_getattro handler with a more "modern" approach. This fixes SF bug #551285.
-
Andrew M. Kuchling authored
Point to PEP 100 for MAL's Unicode proposal Fix URL for XML HOWTO Bump version number
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Skip Montanaro authored
strings or numbers
-
Martin v. Löwis authored
-
Fred Drake authored
and xrange objects. This closes SF bug #550555.
-
Fred Drake authored
to make avoid regression.
-
- 01 May, 2002 7 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
This still does not work well since ctags does not do a good job with the Python headers, appearantly due to the DL_IMPORT macro. ;-(
-
Fred Drake authored
This closes SF bug #550409. Applying to release21-maint & release22-maint.
-
Fred Drake authored
-
- 30 Apr, 2002 8 commits
-
-
Barry Warsaw authored
define info-lookup-maybe-add-help.
-
Skip Montanaro authored
removed it from there and added it here)
-
Skip Montanaro authored
-
Fred Drake authored
-
Andrew MacIntyre authored
-
Andrew MacIntyre authored
selections (eg "-u network") being ignored.
-
Andrew MacIntyre authored
-
Fred Drake authored
(reported by François Pinard). Added some missing "_" characters in the same cluster of productions. Added missing floor division operator in m_expr production, and mention floor division in the relevant portion of the text.
-
- 29 Apr, 2002 6 commits
-
-
Tim Peters authored
and allocate it in one gulp. This isn't a bugfix, it's just a minor optimization that may or may not pay off.
-
Thomas Heller authored
Bugfix candidate? Don't know how this is handled in the docs.
-
Andrew M. Kuchling authored
-
Fred Drake authored
-
Guido van Rossum authored
Unicode objects are currently taken as binary data by the write() method. This is not what Unicode users expect, nor what the StringIO.py code does. Until somebody adds a way to specify binary or text mode for cStringIO objects, change the format string to use "t#" instead of "s#", so that it will request the "text buffer" version. This will try the default encoding for Unicode objects. This is *not* a 2.2 bugfix (since it *is* a semantic change).
-
Tim Peters authored
This now does a dynamic analysis of which elements are so frequently repeated as to constitute noise. The primary benefit is an enormous speedup in find_longest_match, as the innermost loop can have factors of 100s less potential matches to worry about, in cases where the sequences have many duplicate elements. In effect, this zooms in on sequences of non-ubiquitous elements now. While I like what I've seen of the effects so far, I still consider this experimental. Please give it a try!
-
- 28 Apr, 2002 4 commits
-
-
Tim Peters authored
memory management.
-
Tim Peters authored
display a msg warning that the count of bytes requested may be bogus, and that a segfault may happen next.
-
Tim Peters authored
As threatened, PyMem_{Free, FREE} also invoke the object deallocator now when pymalloc is enabled (well, it does when pymalloc isn't enabled too, but in that case "the object deallocator" is plain free()). This is maximally backward-compatible, but it leaves a bitter aftertaste. Also massive reworking of comments.
-
Tim Peters authored
_PyObject_GC_NewVar: Could call PyObject_INIT_VAR likewise. Bugfix candidate.
-