- 30 Jun, 2000 40 commits
-
-
Fred Drake authored
This patch fixes possible overflow in the use of PyOS_GetLastModificationTime in getmtime.c and Python/import.c. Currently PyOS_GetLastModificationTime returns a C long. This can overflow on Win64 where sizeof(time_t) > sizeof(long). Besides it should logically return a time_t anyway (this patch changes this). As well, import.c uses PyOS_GetLastModificationTime for .pyc timestamping. There has been recent discussion about the .pyc header format on python-dev. This patch adds oveflow checking to import.c so that an exception will be raised if the modification time overflows. There are a few other minor 64-bit readiness changes made to the module as well: - size_t instead of int or long for function-local buffer and string length variables - one buffer overflow check was added (raises an exception on possible overflow, this overflow chance exists on 32-bit platforms as well), no other possible buffer overflows existed (from my analysis anyway) Closes SourceForge patch #100509.
-
Guido van Rossum authored
-
Barry Warsaw authored
Setup.config.in. The latter contains all configure-time selectable modules; currently thread and gc.
-
Barry Warsaw authored
-
Fred Drake authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Fred Drake authored
-
Fred Drake authored
-
Mark Hammond authored
-
Fred Drake authored
Do not forget to install the xml packages!
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
as nice. ;)
-
Jeremy Hylton authored
-
Fred Drake authored
The common technique for printing out a pointer has been to cast to a long and use the "%lx" printf modifier. This is incorrect on Win64 where casting to a long truncates the pointer. The "%p" formatter should be used instead. The problem as stated by Tim: > Unfortunately, the C committee refused to define what %p conversion "looks > like" -- they explicitly allowed it to be implementation-defined. Older > versions of Microsoft C even stuck a colon in the middle of the address (in > the days of segment+offset addressing)! The result is that the hex value of a pointer will maybe/maybe not have a 0x prepended to it. Notes on the patch: There are two main classes of changes: - in the various repr() functions that print out pointers - debugging printf's in the various thread_*.h files (these are why the patch is large) Closes SourceForge patch #100505.
-
Marc-André Lemburg authored
A previous patch by Jack Jansen was accidently reverted.
-
Guido van Rossum authored
- The Tcl minor version should be 3 -- we're now using 8.3.1. - Remove the version number from yet another Tcl source file. Note that Tcl should be installed in C:\src\tcl for this to work.
-
Guido van Rossum authored
variable...
-
Jeremy Hylton authored
-
Guido van Rossum authored
-
Guido van Rossum authored
include, it doesn't seem to work.
-
Guido van Rossum authored
(Change title to beta 1, change a few paths for typical Win98 setup.)
-
Guido van Rossum authored
-
Fredrik Lundh authored
-- added pickling support (only works if sre is imported) -- fixed wordsize problems in engine (instead of casting literals down to the character size, cast characters up to the literal size (same as the code word size). this prevents false hits when you're matching a unicode pattern against an 8-bit string. (unfortunately, this broke another test, but I think the test should be changed in this case; more on that on python-dev) -- added sre.purge function (unofficial, clears the cache)
-
Guido van Rossum authored
-
Andrew M. Kuchling authored
Mention the GC module Add MH's explanation of the Windows crash Add atexit.py
-
Fredrik Lundh authored
- untabified sre_constants.py
-
Marc-André Lemburg authored
Fixed a quote bug. Thanks to Fredrik Lundh.
-
Marc-André Lemburg authored
New buffer overflow checks for formatting strings. By Trent Mick.
-
Marc-André Lemburg authored
Added test output.
-
Marc-André Lemburg authored
New test for huge formatting strings (these could cause core dumps in previous versions). By Trent Mick.
-
Marc-André Lemburg authored
Include <> -> "". Removed some left over code at the end of the file. Patch by Bill Tutt.
-
Marc-André Lemburg authored
Include <> -> "". Patch by Bill Tutt.
-
Marc-André Lemburg authored
-
Marc-André Lemburg authored
Updated test output (the ucn tests are now in test_ucn).
-
Marc-André Lemburg authored
Moved tests of new Unicode Char Name support to a separate test.
-
Fredrik Lundh authored
(closes #3 and #7 from the status report)
-
Tim Peters authored
by trying to use CVS under Windows at all ...
-