- 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 6 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ı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 26 Kas, 2003 6 kayıt (commit)
-
-
Fred Drake yazdı
- make the output more XHTML friendly
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Raymond Hettinger yazdı
-
Neal Norwitz yazdı
-
Raymond Hettinger yazdı
-
- 25 Kas, 2003 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
intern() to a separate region in the docs.
-
Raymond Hettinger yazdı
than PySequence_Contains() and more clearly applicable to dicts. Apply the new function in setobject.c where __contains__ checking is ubiquitous.
-
Fred Drake yazdı
-
Kurt B. Kaiser yazdı
M IOBinding.py Backported to 23-maint
-
- 24 Kas, 2003 7 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Kurt B. Kaiser yazdı
which use the Space key. Limit unmodified user keybindings to the function keys. Python Bug 775353, IDLEfork Bugs 755647, 761557 Improve error handling during startup if there's no Tkinter. M NEWS.txt M PyShell.py M config-keys.def M configHandler.py M keybindingDialog.py Backport candidate.
-
Guido van Rossum yazdı
unsigned int (on a 32-bit machine), by adding an explicit 'u' to the literal (a prime used to improve the hash function for frozenset).
-
Guido van Rossum yazdı
-
Kurt B. Kaiser yazdı
IDLE version to 1.1a0. Modified Files: NEWS.txt idlever.py
-
Raymond Hettinger yazdı
* Add more tests * Refactor and neaten the code a bit. * Rename union_update() to update(). * Improve the algorithms (making them a closer to sets.py).
-
- 23 Kas, 2003 2 kayıt (commit)
-
-
Barry Warsaw yazdı
guess_all_extensions() returns (at least) what we expect. As Jeff Epler suggests in http://mail.python.org/pipermail/python-dev/2003-September/038264.html We use a set to test the results. This fixes the test when test_urllib2 is run before test_mimetypes.
-
Raymond Hettinger yazdı
function. * Add a better test for deepcopying. * Add tests to show the __init__() function works like it does for list and tuple. Add related test. * Have shallow copies of frozensets return self. Add related test. * Have frozenset(f) return f if f is already a frozenset. Add related test. * Beefed-up some existing tests.
-
- 22 Kas, 2003 2 kayıt (commit)
-
-
Guido van Rossum yazdı
by the function object or by the method object, the function object's attribute usually wins. Christian Tismer pointed out that that this is really a mistake, because this only happens for special methods (like __reduce__) where the method object's version is really more appropriate than the function's attribute. So from now on, all method attributes will have precedence over function attributes with the same name.
-
Raymond Hettinger yazdı
Brings the functionality back in line with sets.py.
-