- 30 Jun, 2000 40 commits
-
-
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 ...
-
Fredrik Lundh authored
-
Fredrik Lundh authored
- added test suite
-
Skip Montanaro authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
another typo caught by Rob Hooft
-
Jeremy Hylton authored
-
Jeremy Hylton authored
update configure files (turn --with-cycle-gc on for beta release?)
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
Berkeley DB 2.0 or newer; most Linux distros will include a more recent version than 1.85.
-
Fred Drake authored
-
Fred Drake authored
new winreg module.
-
Fred Drake authored
Make some references between the distutils documents hyperlinks using the \citetitle markup.
-
Greg Ward authored
-
Guido van Rossum authored
Note that configure hadn't been checked in a few times so it has more changes, catching up with the last few changes to congifure.in as well.
-
Fred Drake authored
This patch fixes possible overflows in the socket module for 64-bit platforms (mainly Win64). The changes are: - abstract the socket type to SOCKET_T (this is SOCKET on Windows, int on Un*x), this is necessary because sizeof(SOCKET) > sizeof(int) on Win64 - use INVALID_SOCKET on Win32/64 for an error return value for accept() - ensure no overflow of the socket variable for: (1) a PyObject return value (use PyLong_FromLongLong if necessary); and (2) printf formatting in repr(). Closes SourceForge patch #100516.
-
Guido van Rossum authored
autoheader revealed this.
-
Guido van Rossum authored
Tim posted a long comment to python-dev (subject: "Controversial patch (cmath)"; date: 6/29/00). The conclusion is that this whole module stinks and this patch isn't perfect, but it's better than the acosh and asinh we had, so let's check it in.
-
Andrew M. Kuchling authored
Removed all but one XXX. Replaced 1.6 with 2.0. Various minor corrections and additions.
-