- 30 Jun, 2000 40 commits
-
-
Fred Drake authored
Trent Mick <trentm@activestate.com>: Fix PC/msvcrtmodule.c and PC/winreg.c for Win64. Basically: - sizeof(HKEY) > sizeof(long) on Win64, so use PyLong_FromVoidPtr() instead of PyInt_FromLong() to return HKEY values on Win64 - Check for string overflow of an arbitrary registry value (I know that ensuring that a registry value does not overflow 2**31 characters seems ridiculous but it is *possible*). Closes SourceForge patch #100517.
-
Jeremy Hylton authored
also, fix type (not caught by Rob Hooft, but could have been :-)
-
Barry Warsaw authored
newline in configure --help.
-
Skip Montanaro authored
allows the caller to execute the various tests in pseudo-random order - default is still to execute tests in the order returned by findtests(). * moved initialization of the various flag variables to the main() function definition, making it possible to execute regrtest.main() interactively and still override default behavior.
-
Guido van Rossum authored
is actually by Fredrik Lundh). This will break the re tests -- Fredrik will fix this before the final release.
-
Barry Warsaw authored
disables it. The gc test is moved to just after the thread test, as is the wctype-functions test. Modules/Setup.config is generated instead of Modules/Setup.thread. Applied SF patch #100684 (loewis) to fix help alignment bug.
-
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.
-
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.
-