- 21 Haz, 2000 12 kayıt (commit)
-
-
Guido van Rossum yazdı
These two fixes were approved by me. Peter Kropf: There's a problem with the xmllib module when used with JPython. Specifically, the JPython re module has trouble with the () characters in strings passed into re.compile. Spiros Papadimitriou: I just downloaded xmllib.py ver. 0.3 from python.org and there seems to be a slight typo: Line 654 ("tag = self.stack[-1][0]" in parse_endtag), is indented one level more than it should be. I just thought I'd let you know...
-
Greg Ward yazdı
major ports of GCC to Windows. Contributed by Rene Liebscher, and quite untested by me. Apparently requires tweaking Python's installed config.h and adding a libpython.a to build extensions.
-
Greg Ward yazdı
manifest, regenerate the manifest.
-
Greg Ward yazdı
-
Greg Ward yazdı
(Bug spotted and originally fixed by Rene Liebscher; fix redone by me.)
-
Greg Ward yazdı
'install_headers'.
-
Greg Ward yazdı
'try_cpp()', 'search_cpp()', and 'check_header()'. This is enough that the base config is actually useful for implementing a real config command, specifically one for mxDateTime.
-
Greg Ward yazdı
-
Greg Ward yazdı
it in UnixCCompiler. Still needs to be implemented in MSVCCompiler (and whatever other compiler classes are lurking out there, waiting to be checked in).
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
- 20 Haz, 2000 13 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
the number of children of a node exceeds the max possible value for the short that is used to count them. The Python runtime converts this parser error into the SyntaxError "expression too long."
-
Jeremy Hylton yazdı
raised, caught, and converted to a string.
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
Patch to add support for sip: (Session Initiation Protocol, RFC2543) URLs.
-
Fred Drake yazdı
Simplify find code; this is a performance improvement on at least some platforms.
-
Mark Hammond yazdı
Added a new debug method sys.gettotalrefcount(), which returns the total number of references on all Python objects. This is only enabled when Py_TRACE_REFS is defined (which includes default debug builds under Windows). Also removed a redundant cast from sys.getrefcount(), as discussed on the patches list.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
Fix memory leak in initializing __debug__.
-
- 19 Haz, 2000 3 kayıt (commit)
-
-
Fred Drake yazdı
commented by Fred Drake, to prevent usage of sufficiently broken GCC versions.
-
Fred Drake yazdı
-
Andrew M. Kuchling yazdı
[mwh21@atrus build]$ ./python >>> import Tkinter >>> l = [] >>> l.append(l) >>> Tkinter._flatten(l) Segmentation fault (core dumped)
-
- 18 Haz, 2000 12 kayıt (commit)
-
-
Marc-André Lemburg yazdı
Fixed a bug in PyUnicode_Count() which would have caused a core dump in case of substring coercion failure. Synchronized .count() with the string method of the same name to return len(s)+1 for s.count('').
-
Marc-André Lemburg yazdı
Added optimization proposed by Andrew Kuchling to the Unicode matching macro.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
I discovered the [MREMAP_MAYMOVE] symbol is only defined when _GNU_SOURCE is defined; therefore, here is the change: if we are compiling for linux, define _GNU_SOURCE before including mman.h, and all is done.
-
Andrew M. Kuchling yazdı
this patch adds a fast _flatten function to the _tkinter module, and imports it from Tkinter.py (if available). this speeds up canvas operations like create_line and create_polygon. for example, a create_line with 5000 vertices runs about 50 times faster with this patch in place.
-
Andrew M. Kuchling yazdı
this patch introduces PySequence_Fast and PySequence_Fast_GET_ITEM, and modifies the list.extend method to accept any kind of sequence.
-
Greg Ward yazdı
-
Andrew M. Kuchling yazdı
the mremap() change I made; did someone modify configure.in previously without recreating these files?
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Remove two unused variables
-
Fred Drake yazdı
-
Andrew M. Kuchling yazdı
-