- 02 Dec, 2003 6 commits
-
-
Andrew MacIntyre authored
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 authored
- various minor cleanups and updates.
-
Andrew MacIntyre authored
a Python extension, so that the curses_panel extension works. - minor compiler switch tweak.
-
Andrew MacIntyre authored
-
Raymond Hettinger authored
Use a set instead of dict with values equal to one.
-
Raymond Hettinger authored
-
- 01 Dec, 2003 6 commits
-
-
Tim Peters authored
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 authored
Backported to 2.3.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
operator module.
-
Raymond Hettinger authored
-
- 30 Nov, 2003 3 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
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 Nov, 2003 2 commits
-
-
Guido van Rossum authored
2**32-1 makes no sense. Use 2**31-1 instead.
-
Guido van Rossum authored
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 Nov, 2003 2 commits
-
-
Raymond Hettinger authored
an exception raised by the key function. (Suggested by Michael Hudson.)
-
Thomas Heller authored
is installed but the registry settings are incomplete because the gui has never been run. Already backported to release23-maint.
-
- 27 Nov, 2003 6 commits
-
-
Jack Jansen authored
cause an index error. We now select the first package if this threatens to happen. Will backport.
-
Jack Jansen authored
confusing. To be on the safe side we always show hidden packages before showing error dialogs. Will backport.
-
Jack Jansen authored
Things will definitely change before 2.4, but for now use a slightly different URL.
-
Jack Jansen authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
- 26 Nov, 2003 6 commits
-
-
Fred Drake authored
- make the output more XHTML friendly
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Raymond Hettinger authored
-
Neal Norwitz authored
-
Raymond Hettinger authored
-
- 25 Nov, 2003 4 commits
-
-
Raymond Hettinger authored
intern() to a separate region in the docs.
-
Raymond Hettinger authored
than PySequence_Contains() and more clearly applicable to dicts. Apply the new function in setobject.c where __contains__ checking is ubiquitous.
-
Fred Drake authored
-
Kurt B. Kaiser authored
M IOBinding.py Backported to 23-maint
-
- 24 Nov, 2003 5 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Kurt B. Kaiser authored
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 authored
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 authored
-