- 13 Nov, 2001 11 commits
-
-
Tim Peters authored
to have single "expected output" file.
-
Tim Peters authored
This gives mmap() on Windows the ability to create read-only, write- through and copy-on-write mmaps. A new keyword argument is introduced because the mmap() signatures diverged between Windows and Unix, so while they (now) both support this functionality, there wasn't a way to spell it in a common way without introducing a new spelling gimmick. The old spellings are still accepted, so there isn't a backward- compatibility issue here.
-
Barry Warsaw authored
uninitialized memory reads reported in bug #478001. Note that this doesn't address the following larger issues: - Error conditions are not documented for PyOS_*sig() in the C API. - Nothing that actually calls PyOS_*sig() in the core interpreter and extension modules actually /checks/ the return value of the call. Fixing those is left as an exercise for a later day.
-
Jeremy Hylton authored
-
Tim Peters authored
-
Barry Warsaw authored
addresses. Commented out because it still takes too long to run.
-
Barry Warsaw authored
-
Barry Warsaw authored
for dumbdbm.py, by Skip Montanaro. The first half of Skip's patch has been postponed until Py2.3 since it adds new features.
-
Tim Peters authored
deleted its declaration.
-
Barry Warsaw authored
field exists with an empty value.
-
Barry Warsaw authored
IndexError when a Date: field exists with an empty value.
-
- 12 Nov, 2001 4 commits
-
-
Tim Peters authored
clearly (but incorrectly) assuming it.
-
Jack Jansen authored
- Added a note about the limit stack command - Revoved the note about largefile - Added a note about /usr/local not existing by default.
-
Thomas Heller authored
remove DL_IMPORT.
-
Thomas Heller authored
-
- 11 Nov, 2001 3 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
- 10 Nov, 2001 5 commits
-
-
Jack Jansen authored
linked against. Most, but not all, of it is included in PythonCore, but extensions may want to use some of the routines not included. Fixes a bug reported by Tom Loredo.
-
Jack Jansen authored
Tom Loredo.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
Fixes problem with not detecting UTF-8 errors.
-
Jack Jansen authored
- Don't scan for cmd-. unless in the foreground - Scan before switching out to other processes, not after - don't scan if SchedParams.check_interrupt is false (!) - But: do scan if we're blocked on I/O One problem remains: in the last case KeyboardInterrupt is raised too late.
-
- 09 Nov, 2001 17 commits
-
-
Fred Drake authored
-
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
-