- 30 Haz, 2000 40 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fredrik Lundh yazdı
- removed evil tabs from sre_parse and sre_compile
-
Fred Drake yazdı
suggestion from Frank for an example and further explanation.
-
Fred Drake yazdı
Change a 1.6 version number used in a an example in a comment to 2.0.
-
Fred Drake yazdı
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 yazdı
also, fix type (not caught by Rob Hooft, but could have been :-)
-
Barry Warsaw yazdı
newline in configure --help.
-
Skip Montanaro yazdı
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 yazdı
is actually by Fredrik Lundh). This will break the re tests -- Fredrik will fix this before the final release.
-
Barry Warsaw yazdı
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 yazdı
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 yazdı
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 yazdı
-
Barry Warsaw yazdı
Setup.config.in. The latter contains all configure-time selectable modules; currently thread and gc.
-
Barry Warsaw yazdı
-
Fred Drake yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Mark Hammond yazdı
-
Fred Drake yazdı
Do not forget to install the xml packages!
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
as nice. ;)
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
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 yazdı
A previous patch by Jack Jansen was accidently reverted.
-
Guido van Rossum yazdı
- 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 yazdı
variable...
-
Jeremy Hylton yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
include, it doesn't seem to work.
-
Guido van Rossum yazdı
(Change title to beta 1, change a few paths for typical Win98 setup.)
-
Guido van Rossum yazdı
-
Fredrik Lundh yazdı
-- 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 yazdı
-
Andrew M. Kuchling yazdı
Mention the GC module Add MH's explanation of the Windows crash Add atexit.py
-