- 18 Eyl, 1997 1 kayıt (commit)
-
-
Barry Warsaw yazdı
but annoying memory leak. This was introduced when PyExc_Exception was added; the loop above populating the PyExc_StandardError exception tuple started at index 1 in bltin_exc, but PyExc_Exception was added at index 0, so PyExc_StandardError was getting inserted in itself! How else can a tuple include itself?! Change the loop to start at index 2. This was a *fun* one! :-)
-
- 16 Eyl, 1997 11 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Guido van Rossum yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
__module__ string and if found, print <module>.<class>, unless <module> == "exceptions".
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
(1) Introduce Exception as the conceptual root class for all exceptions. (2) Do less work in __init__(), and more in __str__ (store args unchanged).
-
Guido van Rossum yazdı
"-i" is given. (Yes, I know, giving in to Marc Lemburg who wanted this :-)
-
- 15 Eyl, 1997 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
explanatory message when the manual directories aren't found. (I have to say I'm surprised that it actually still works!)
-
Guido van Rossum yazdı
(Includes a patch he sent me a few days later.)
-
- 14 Eyl, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 13 Eyl, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 12 Eyl, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
- Don't use "from copy_reg import *". - Use cls.__module__ instead of calling whichobject(cls, cls.__name__); also try __module__ in whichmodule(), just in case. - After calling save_reduce(), add the object to the memo.
-
Guido van Rossum yazdı
whose name is in the current globals' __name__ variable. If __name__ is not set, ignore this.
-
- 11 Eyl, 1997 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
different (programs that write programs). We are dealing with metaclasses here. So change the words slightly.
-
Guido van Rossum yazdı
-
- 09 Eyl, 1997 18 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
aren't needed and it was a mistake to add them.
-
Guido van Rossum yazdı
is mostly concentrated in a generalized find_module() and the new load_module(). Added the new module type constants. Declare that SEARCH_ERROR and a whole bunch of module-type-specific functions are obsolete.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
load-module() didn't find a built-in or frozen module. Also got rid of is_frozen(), which duplicated the functionality of find_frozen()!=NULL.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
automatically all the time.
-
Jack Jansen yazdı
Added Help module. Checked in PythonCore.prj.hqx (which had somehow slipped through until now)
-
Jack Jansen yazdı
Implemented balloon help for options dialog.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
to 4.
-
Jack Jansen yazdı
version to 4. Added balloon-help item to options dialog.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-