- 30 Haz, 2000 40 kayıt (commit)
-
-
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
-
Fredrik Lundh yazdı
- untabified sre_constants.py
-
Marc-André Lemburg yazdı
Fixed a quote bug. Thanks to Fredrik Lundh.
-
Marc-André Lemburg yazdı
New buffer overflow checks for formatting strings. By Trent Mick.
-
Marc-André Lemburg yazdı
Added test output.
-
Marc-André Lemburg yazdı
New test for huge formatting strings (these could cause core dumps in previous versions). By Trent Mick.
-
Marc-André Lemburg yazdı
Include <> -> "". Removed some left over code at the end of the file. Patch by Bill Tutt.
-
Marc-André Lemburg yazdı
Include <> -> "". Patch by Bill Tutt.
-
Marc-André Lemburg yazdı
-
Marc-André Lemburg yazdı
Updated test output (the ucn tests are now in test_ucn).
-
Marc-André Lemburg yazdı
Moved tests of new Unicode Char Name support to a separate test.
-
Fredrik Lundh yazdı
(closes #3 and #7 from the status report)
-
Tim Peters yazdı
by trying to use CVS under Windows at all ...
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
- added test suite
-
Skip Montanaro yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
another typo caught by Rob Hooft
-
Jeremy Hylton yazdı
-