- 09 Agu, 1997 2 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
- 08 Agu, 1997 12 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
flags for open().
-
Barry Warsaw yazdı
-
Jack Jansen yazdı
aliases (Just)
-
Jack Jansen yazdı
- Fixed Property class: selector is a 'type', not an 'enum'
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Py_SetProgramName replaces Py_GetProgramName
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
projects unified (as much as possible: PythonCore is still separate).
-
Jack Jansen yazdı
project files, which have to be cleaned up before checking in, .prj files are CW Pro 1 projects (which are always clean). Prj files are still binhexed, even though they only have a data fork (and, hence, could be checked in in binary mode).
-
Jack Jansen yazdı
code isn't ideal yet: xxx.Window(1).Paragraph(3).font will only work if all the classes and properties are declared in the same suite, but at least font(Paragraph(3, Window(1))) always works.
-
- 07 Agu, 1997 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
under WIN32 -- remove file handler interface, don't use Py_input_hook.
-
Guido van Rossum yazdı
main_nt.c is gone -- we can use Modules/python.c now. Added Mark Hammond's module msvcrt.c (untested). Added several new symbols.
-
- 06 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 05 Agu, 1997 22 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Add Py_input_hook (used by _tkinter and perhaps Gist).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
SystemError: bad argument to internal function caused by comparing NULL pointer default args.
-
Guido van Rossum yazdı
in Tk.destroy(), reset _default_root to None when it is us.
-
Guido van Rossum yazdı
Py_DECREF, to reduce the warnings when compiling with reference count debugging on. (There are still warnings for each call to _Py_NewReference -- too bad.)
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
functions.
-
Guido van Rossum yazdı
scheme based on object's types, have a simple two-phase scheme based on object's *names*: /* To make the execution order of destructors for global objects a bit more predictable, we first zap all objects whose name starts with a single underscore, before we clear the entire dictionary. We zap them by replacing them with None, rather than deleting them from the dictionary, to avoid rehashing the dictionary (to some extent). */
-
Guido van Rossum yazdı
'Py_Cleanup' back to 'cleanup'.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
from the interned table. There are references in hard-to-find static variables all over the interpreter, and it's not worth trying to get rid of all those; but "uninterning" isn't fair either and may cause subtle failures later -- so we have to keep them in the interned table. Also get rid of no-longer-needed insert of None in interned dict.
-
Guido van Rossum yazdı
few percent speed up. Also add PyCFunction_Fini() to discard it.
-
Guido van Rossum yazdı
no valid directory is passed in. This prevents __del__ to fail when invoked after __builtins__ has already been discarded. Also add PyFrame_Fini() to discard the cache of frames.
-
Guido van Rossum yazdı
percent speed up. Also add PyMethod_Fini() to discard it.
-
Guido van Rossum yazdı
In _Py_PrintReferences(), no longer suppress once-referenced string. Add Py_Malloc and friends and PyMem_Malloc and friends (malloc wrappers for third parties).
-
Guido van Rossum yazdı
-