- 09 Nov, 2001 30 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
supports the single-segment readable buffer interface. Add documentation for this and other PyObject_XXXBuffer() calls.
-
Fred Drake authored
-
Jeremy Hylton authored
-
Martin v. Löwis authored
-
Tim Peters authored
-
Barry Warsaw authored
socket.gaierror. :( This allows test_socket to pass on a RH6.1-ish Linux system.
-
Jeremy Hylton authored
Easy enough to catch assignment in the compiler. The perverse user can still change the value of __debug__, but that may be the least he can do.
-
Jeremy Hylton authored
Easy enough to catch assignment in the compiler. The perverse user can still change the value of __debug__, but that may be the least he can do.
-
Jeremy Hylton authored
message for bad mode argument -- so that it doesn't fail on Windows. It's hack. We know that errno is set to 0 in this case on Windows, so check for that specifically.
-
Barry Warsaw authored
-
Barry Warsaw authored
strptime() -- I'm too lazy to code it otherwise.
-
Tim Peters authored
object, so the "Metroworks only" section should not decref it in case of error (the caller is responsible for decref'ing in case of error -- and does).
-
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Thomas Heller authored
-
Barry Warsaw authored
rfc822.py. The old rfc822.formatdate() produced date strings using obsolete syntax. The new version produces the preferred RFC 2822 dates. Also, an optional argument `localtime' is added, which if true, produces a date relative to the local timezone, with daylight savings time properly taken into account.
-
Thomas Heller authored
-
Jeremy Hylton authored
Fix contributed by Jeffrey C. Ollie. I haven't tested the fix because the situation is non-trivial to reproduce. The basic solution is to get rid of the __current_realm attribute of authentication handlers. Instead, prevent infinite retries by checking for the presence of an Authenticate: header in the request object that exactly matches the Authenticate: header that would be added. The problem prevent authentication from working correctly in the presence of retries. Ollie mentioned that digest authentication has the same problem and I applied the same solution there.
-
Jeremy Hylton authored
Fix by Neil Schemenauer. Visit the Subscript node when trying to find the operation for a statement. XXX Not sure if there are other nodes that should be visited.
-
Jeremy Hylton authored
If fopen() fails with EINVAL it means that the mode argument is invalid. Return the mode in the error message instead of the filename.
-
Jeremy Hylton authored
-
Fred Drake authored
-
Fred Drake authored
-
Michael W. Hudson authored
other platforms that have funny ideas about whether addresses of functions in dlls are compile-time constants.
-
Fred Drake authored
Lannert. Added descriptions of HTTP_PORT and HTTPS_PORT.
-
Fred Drake authored
by Detlef Lannert.
-
- 08 Nov, 2001 3 commits
-
-
Martin v. Löwis authored
-
Fred Drake authored
-
Marc-André Lemburg authored
-
- 07 Nov, 2001 7 commits
-
-
Martin v. Löwis authored
Also delegate kw arguments through ** calls.
-
Marc-André Lemburg authored
This patch boosts performance for comparing identical string object by some 20% on my machine while not causing any noticable slow-down for other operations (according to tests done with pybench).
-
Martin v. Löwis authored
-
Fred Drake authored
with the signature, not an ad hoc abbreviated form.
-
Fred Drake authored
-
Fred Drake authored
not affect the API. Clean up the text about call syntax apply() is equivalent to. Based on comments by Thomas Guettler.
-
Tim Peters authored
I'm guessing at this, pending more info from the bug submitter. Wise changed how the %GROUP% vrbl got defined between versions 5.0a (used before Python 2.2) and 8.14, to hold the full path to Start Menu group instead of just the group name. If I'm guessing correctly, the info the bug report is complaining about is in one of the registry keys we set up that neither Windows nor Python cares about. We did store a full path there in 2.2b1 instead of just the group name; the patch cuts it back to just the name again.
-