- 07 Jul, 2002 1 commit
-
-
Tim Peters authored
+ I'm not sure what to do about configure.in. Left it alone. + Ditto pyexpat.c. Fred or Martin will know what to do.
-
- 06 Jul, 2002 6 commits
-
-
Jeremy Hylton authored
Subclasses of Exception that define an __init__ must call Exception.__init__ or define self.args. Otherwise, str() will fail. Bug fix candidate.
-
Jeremy Hylton authored
Section 19.6 of RFC 2616 (HTTP/1.1): It is beyond the scope of a protocol specification to mandate compliance with previous versions. HTTP/1.1 was deliberately designed, however, to make supporting previous versions easy.... And we would expect HTTP/1.1 clients to: - recognize the format of the Status-Line for HTTP/1.0 and 1.1 responses; - understand any valid response in the format of HTTP/0.9, 1.0, or 1.1. The changes to the code do handle response in the format of HTTP/0.9. Some users may consider this a bug because all responses with a sufficiently corrupted status line will look like an HTTP/0.9 response. These users can pass strict=1 to the HTTP constructors to get a BadStatusLine exception instead. While this is a new feature of sorts, it enhances the robustness of the code (be tolerant in what you accept). Thus, I consider it a bug fix candidate. XXX strict needs to be documented.
-
Kurt B. Kaiser authored
from both sides of the split debugger. M Debugger.py M EditorWindow.py
-
Kurt B. Kaiser authored
-
Kurt B. Kaiser authored
-
Kurt B. Kaiser authored
2. Remove extraneous comment
-
- 05 Jul, 2002 1 commit
-
-
unknown authored
M Debugger.py : Incorporate StackViewer, NamespaceViewer classes M StackViewer.py : remove import OldStackViewer U OldStackViewer.py : remove file
-
- 04 Jul, 2002 4 commits
-
-
Tim Peters authored
-
Michael W. Hudson authored
-
Greg Ward authored
standalone wrap() and fill() functions. This should address the misunderstanding that led to SF bug 577106.
-
Thomas Heller authored
-
- 03 Jul, 2002 7 commits
-
-
Steve Holden authored
-
Fred Drake authored
have changed. Uncomment a heading so that PendingDeprecationWarning doesn't seem so out of place.
-
Fred Drake authored
Further clarify the English-centricity of fix_sentence_endings.
-
Barry Warsaw authored
-
Kurt B. Kaiser authored
implementation.
-
Tim Peters authored
breaks other platforms (in this case, the hack for broken Cray systems in turn caused failure on a Mac system broken in a different way).
-
Mark Hammond authored
From patch: [ 574532 ] Update freeze to use zlib 1.1.4
-
- 02 Jul, 2002 20 commits
-
-
Fred Drake authored
attributes of the TestResult.
-
Fred Drake authored
TestResult object. Add an example of how to get even more information for apps that can use it. Closes SF bug #558278.
-
Tim Peters authored
binascii_crc32(): The previous patch forced this to return the same result across platforms. This patch deals with that, on a 64-bit box, the *entry* value may have "unexpected" bits in the high four bytes. Bugfix candidate.
-
Tim Peters authored
-
Greg Ward authored
classdesc -- just use "..." with prose explaining the correspondence between keyword args and instance attributes. Document 'width' along with the other instance attributes. Describe default values consistently. Typo fixes.
-
Fred Drake authored
don't include a " -> None" for functions that have no return value.
-
Fred Drake authored
Based on SF bug #574773.
-
Fred Drake authored
Change the markup to be more like the rest of the documentation.
-
Fred Drake authored
\py@sigline macro will wrap the argument list so it will not extend into the right margin. Substantially based on a contribution from Dave Cole. This addresses one of the comments in SF bug #574742.
-
Tim Peters authored
binascii_crc32(): Make this return a signed 4-byte result across platforms. The other way to make this platform-independent would be to make it return an unsigned unbounded int, but the evidence suggests other code out there treats it like a signed 4-byte int (e.g., existing code writing the result with struct.pack "l" format). Bugfix candidate.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Tim Peters authored
This was mostly a matter of adding comments and light code rearrangement. Upon untracking, gc_next is still set to NULL. It's a cheap way to provoke memory faults if calling code is insane. It's also used in some way by the trashcan mechanism.
-
Fred Drake authored
-
Fred Drake authored
line.
-
Fred Drake authored
PyErr_SetFromWindowsErrWithFilename().
-
Thomas Heller authored
PyErr_SetFromWindowsErr(). Fixes SF# 576016, with additional markup.
-
Fred Drake authored
it all inline.
-
Jack Jansen authored
-
Tim Peters authored
object should now have a well-defined gc_refs value, with clear transitions among gc_refs states. As a result, none of the visit_XYZ traversal callbacks need to check IS_TRACKED() anymore, and those tests were removed. (They were already looking for objects with specific gc_refs states, and the gc_refs state of an untracked object can no longer match any other gc_refs state by accident.) Added more asserts. I expect that the gc_next == NULL indicator for an untracked object is now redundant and can also be removed, but I ran out of time for this.
-
- 01 Jul, 2002 1 commit
-
-
Fred Drake authored
-