- 24 Haz, 2000 9 kayıt (commit)
-
-
Greg Ward yazdı
the "install_data" command to the installation base, which is usually just sys.prefix. (Any setup scripts out there that specify data files will have to set the installation directory, relative to the base, explicitly.)
-
Greg Ward yazdı
on if it sees a filename with unknown extension.
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Greg Ward yazdı
in the module of the command classes that have command-specific help options. This lets us keep the principle of lazily importing the ccompiler module, and also gets away from defining non-methods at class level.
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Greg Ward yazdı
accomodate SWIG interface files, resource files, etc.).
-
- 23 Haz, 2000 7 kayıt (commit)
-
-
Barry Warsaw yazdı
the insertion of the text.
-
Jeremy Hylton yazdı
This patch modifies the type structures of objects that participate in GC. The object's tp_basicsize is increased when GC is enabled. GC information is prefixed to the object to maintain binary compatibility. GC objects also define the tp_flag Py_TPFLAGS_GC.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
This patch adds the type methods traverse and clear necessary for GC implementation.
-
Greg Ward yazdı
than a boolean indicating whether it did the copy.
-
Andrew M. Kuchling yazdı
functions that might block or pause
-
- 21 Haz, 2000 14 kayıt (commit)
-
-
Jack Jansen yazdı
-
Marc-André Lemburg yazdı
Made codecs.open() default to 'rb' as file mode.
-
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 10 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ı
-