- 03 Ara, 2003 13 kayıt (commit)
-
-
Jack Jansen yazdı
Completely untested.
-
Jack Jansen yazdı
by request of Donovan Preston. In return, he promised to use this to create a Python OSA component, which would turn Python into a first-class OSA scripting language (like AppleScript itself).
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Mark Hammond yazdı
by setting TESTFN_UNICODE_UNENCODEABLE on these platforms. test_unicode_file only attempts to use the name for testing if not None.
-
Jack Jansen yazdı
-
Walter Dörwald yazdı
and pass them along to the PrettyPrinter constructor.
-
Walter Dörwald yazdı
and dict too, as long as they don't overwrite __repr__().
-
Guido van Rossum yazdı
for Big String). This should make the tests pass on Win98SE. Note that the docs only promise lengths up to 2048. Unfortunately this no longer tests for the segfault I was seeing earlier, but I'm confident I've nailed that one. :-) Fixes SF 852281. Will backport to 2.3.
-
Walter Dörwald yazdı
-
Mark Hammond yazdı
unicode filenames" Reorganize tests into functions so more combinations of unicode/encoded/ascii can be tested, and while I was at it, upgrade to unittest based test.
-
Mark Hammond yazdı
encoded using the default file system encoding.
-
Mark Hammond yazdı
-
- 02 Ara, 2003 10 kayıt (commit)
-
-
Jack Jansen yazdı
-
Skip Montanaro yazdı
-
Andrew MacIntyre yazdı
-
Andrew MacIntyre yazdı
implement its locking scheme, this module implements a crude link() by way of copying the source to the destination provided the destination doesn't already exist.
-
Andrew MacIntyre yazdı
library search path to include the extension directory. Without this, the curses_panel extension can't find the curses extension/DLL, which exports some curses symbols to it.
-
Andrew MacIntyre yazdı
- various minor cleanups and updates.
-
Andrew MacIntyre yazdı
a Python extension, so that the curses_panel extension works. - minor compiler switch tweak.
-
Andrew MacIntyre yazdı
-
Raymond Hettinger yazdı
Use a set instead of dict with values equal to one.
-
Raymond Hettinger yazdı
-
- 01 Ara, 2003 6 kayıt (commit)
-
-
Tim Peters yazdı
comments about why both calls to cyclic gc here can cause problems. I'll backport to 2.3 maint. Since the calls were introduced in 2.3, that will be the end of it.
-
Martin v. Löwis yazdı
Backported to 2.3.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
operator module.
-
Raymond Hettinger yazdı
-
- 30 Kas, 2003 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
isn't checked, and it *is* possible that a very large alloca() call is made, e.g. when a large registry value is being read. I don't know if alloca() in that case returns NULL or returns a pointer pointing outside the stack, and I don't want to know -- I've simply replaced all calls to alloca() with either PyMem_Malloc() or PyString_FromStringAndSize(NULL,) as appropriate, followed by a size check. This addresses SF buf 851056. Will backport to 2.3 next.
-
- 29 Kas, 2003 2 kayıt (commit)
-
-
Guido van Rossum yazdı
2**32-1 makes no sense. Use 2**31-1 instead.
-
Guido van Rossum yazdı
and left shifts. (Thanks to Kalle Svensson for SF patch 849227.) This addresses most of the remaining semantic changes promised by PEP 237, except for repr() of a long, which still shows the trailing 'L'. The PEP appears to promise warnings for operations that changed semantics compared to Python 2.3, but this is not implemented; we've suffered through enough warnings related to hex/oct literals and I think it's best to be silent now.
-
- 28 Kas, 2003 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
an exception raised by the key function. (Suggested by Michael Hudson.)
-
Thomas Heller yazdı
is installed but the registry settings are incomplete because the gui has never been run. Already backported to release23-maint.
-
- 27 Kas, 2003 4 kayıt (commit)
-
-
Jack Jansen yazdı
cause an index error. We now select the first package if this threatens to happen. Will backport.
-
Jack Jansen yazdı
confusing. To be on the safe side we always show hidden packages before showing error dialogs. Will backport.
-
Jack Jansen yazdı
Things will definitely change before 2.4, but for now use a slightly different URL.
-
Jack Jansen yazdı
-