- 31 May, 2002 4 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Jeremy Hylton yazdı
In the error message, say del for del and assign for everything else.
-
Neal Norwitz yazdı
-
- 30 May, 2002 10 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
in the mode (it's forbidden).
-
Jeremy Hylton yazdı
get_file() must convert 'U' to "r" PY_STDIOTEXTMODE before calling fopen(). imp_load_module() must accept 'r' or 'U' or something with '+'. Also reflow some long lines.
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
-
Michael W. Hudson yazdı
Now we just need to make sure people know about it...
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
readline in all python versions is configured to append a 'space' character for a successful completion. But for almost all python expressions 'space' is not wanted (see coding conventions PEP 8). For example if you have a function 'longfunction' and you type 'longf<TAB>' you get 'longfunction ' as a completion. note the unwanted space at the end. The patch fixes this behaviour by setting readline's append_character to '\0' which means don't append anything. This doesn't work with readline < 2.1 (AFAIK nowadays readline2.2 is in good use). An alternative approach would be to make the append_character accessable from python so that modules like the rlcompleter.py can set it to '\0'. [Ed.: I think expecting readline >= 2.2 is fine. If a completer wants another character they can append that to the keyword in the list.]
-
Neal Norwitz yazdı
-
Raymond Hettinger yazdı
-
- 29 May, 2002 13 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Fred Drake yazdı
- Add comment explaining the structure of the stack. - Minor optimization: make stack tuple directly usable as part of return value for enter/exit events.
-
Andrew M. Kuchling yazdı
-
Neil Schemenauer yazdı
and got confused by certain log files. Remove logreader_refill and the associated logic and replace with fgetc.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Raymond Hettinger yazdı
Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were not updated after 2.2).
-
Neal Norwitz yazdı
that are in the process of deprecation (PendingDeprecationWarning). Docs could be improved.
-
Guido van Rossum yazdı
UINT4.
-
Marc-André Lemburg yazdı
-
Marc-André Lemburg yazdı
-
Michael W. Hudson yazdı
[ 558914 ] Build md5.c fails on Cray T3E I've also deleted a comment that I didn't understand. Feel free to put it back if it makes/made sense to you.
-
Neal Norwitz yazdı
-
- 28 May, 2002 4 kayıt (commit)
-
-
Guido van Rossum yazdı
Using Unicode-aware methods may still die with a NameError on unicode. Maybe there's a more elegant solution but I doubt anybody cares.)
-
Guido van Rossum yazdı
literals must not contain \u, \U or \N escapes. (XXX Should they also not contain non-ASCII characters?)
-
Jack Jansen yazdı
in there, and convert it to "rb" (or "r" for non-universal-newline builds) before passing it to fopen(). Fixes #561326.
-
Christian Tismer yazdı
(or how do I "mark" something to be a candidate?) fixed an old buglet that caused bdb to be unable to continue in the botframe, after a breakpoint was set. the key idea is not to set botframe to the bottom level frame, but its f_back, which actually might be None. Additional changes: migrated old exception trick to use sys._getframe(), which exists both in 2.1 and 2.2 . Note: I believe Mark Hammond needs to look over his code now. F5 correctly starts up in the debugger, but later on doesn't stop at a given breakpoint any longer. kind regards - chris
-
- 27 May, 2002 5 kayıt (commit)
-
-
Steven M. Gava yazdı
-
Andrew M. Kuchling yazdı
-
Michael W. Hudson yazdı
[ 559250 ] more POSIX signal stuff Adds support (and docs and tests and autoconfery) for posix signal mask handling -- sigpending, sigprocmask and sigsuspend.
-
Michael W. Hudson yazdı
-
Guido van Rossum yazdı
allow subclassing.
-
- 26 May, 2002 1 kayıt (commit)
-
-
Chui Tey yazdı
-
- 25 May, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
target.
-
- 24 May, 2002 2 kayıt (commit)
-
-
Guido van Rossum yazdı
whose tp_mro hasn't been initialized, it would dump core. Fix this by checking for NULL and calling PyType_Ready(). Will fix this in 2.2.1 too.
-
Andrew M. Kuchling yazdı
Other minor rewrites
-