- 03 Mar, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 28 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 26 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
on-line list of same.
-
- 25 Şub, 1997 1 kayıt (commit)
-
-
- 24 Şub, 1997 6 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
- Changed FragLoader.h to CodeFragments.h - Removed Desk.h
-
Jack Jansen yazdı
- Changed FragLoader.h to CodeFragments.h - Removed Desk.h - Regenerated bgen modules from new universal headers - Changed some of the s# in PyArg_ParseTuple to m# (unfortunately: this should have been a different commit)
-
Jack Jansen yazdı
-
Barry Warsaw yazdı
-
- 23 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
and there is already a similar demo in Demo/classes/Complex.py.
-
- 21 Şub, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Lee is wondering whether to withdraw his patchs. Sigh.
-
- 20 Şub, 1997 8 kayıt (commit)
-
-
Guido van Rossum yazdı
extensively in test_strftime.py anyway).
-
Jack Jansen yazdı
and there, etc. These projects are still CW10.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
in importdl.c (I had just one crash too many with a static python importing a dynamic module) - On powerpc, enable USE_CACHE_ALIGNED with a linesize of 32 bytes.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
- 19 Şub, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 18 Şub, 1997 9 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Guido van Rossum yazdı
Also grandly renamed. Here's the new interface: When WITH_READLINE is defined, two functions are defined: - PyOS_GnuReadline (what used to be my_readline() with WITH_READLINE) - PyOS_ReadlineInit (for Dave Ascher) Always, these functions are defined: - PyOS_StdioReadline (what used to be my_readline() without WITH_READLINE) - PyOS_Readline (the interface used by tokenizer.c and [raw_]input(). There's a global function pointer PyOS_ReadlineFunctionPointer, initialized to NULL. When PyOS_Readline finds this to be NULL, it sets it to either PyOS_GnuReadline or PyOS_StdioReadline depending on which one makes more sense (i.e. it uses GNU only if it is defined *and* stdin is indeed a tty device). An embedding program that has its own wishes can set the function pointer to a function of its own design. It should take a char* prompt argument (which may be NULL) and return a string *ending in a \n character* -- or "" for EOF or NULL for a user interrupt. --Guido van Rossum (home page: http://www.python.org/~guido/)
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
string as the key to the cache. This means that changing the syntax will return the correct compiled pattern. clear_cache(): New function.
-
Barry Warsaw yazdı
-
Guido van Rossum yazdı
unlikely to find a python binary, as /usr/local/bin is usually not on the default search path.
-
- 17 Şub, 1997 4 kayıt (commit)
-
-
Guido van Rossum yazdı
works unless you don't have putenv.
-
Guido van Rossum yazdı
- add awarning about reconfiguring after Slackware96 fix - add reference to Jim F's ExtensionClass module
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
- 15 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
not exist. All 8 uses of tkinter are replaced with _tkinter. Still create a variable tkinter though, because that is used by other modules importing Tkinter (e.g. tkinter.createfilehandler()). Also added a comment to the 'import _tkinter' line saying that if this fails, Python is not configured correctly.
-
- 14 Şub, 1997 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
New symbol WANT_SIGFPE_HANDLER.
-
Guido van Rossum yazdı
Two new modules fpectl and fpetest. Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros.
-