- 03 Kas, 1999 3 kayıt (commit)
-
-
Barry Warsaw yazdı
Herzog <herzog@online.de>. Specifically, --verbose/-v flag added pot_header added to make msgmerge and Emacs po-mode work better normalize(), escape(), safe_eval(): Improved normalization of strings for more .po file compatibility (e.g. C style). Handles emmbedded newlines better. Also added an identity function called _() and use it in the file where messages are printed. This allows us to selftest pygettext.py with itself as input.
-
Barry Warsaw yazdı
separately but now is included in the standard Python distribution.
-
Guido van Rossum yazdı
I regularly find that pdb sets the breakpoint on the wrong line when I try to set a breakpoint on a function. This fixes the problem somewhat. The real problem is that pdb tries to parse the Python source code to find the first executable line. A better way might be to inspect the code object, or even have a variable in the code object co_firstexecutablelineno, but that's too much work. The patch fixes the problem when the first code line after the def statement contains the start *and* end of a triple-quoted string. The code assumed that the end of a triple-quoted string is not on the same line as the start, and so it would skip to the end of the *next* triple-quoted string.
-
- 02 Kas, 1999 5 kayıt (commit)
-
-
Guido van Rossum yazdı
Also added a comment that the 'p' variants (spawnvp() etc.) are *not* supported on Windows. (They could be by adding them to posixmodule.c)
-
Guido van Rossum yazdı
Sometimes there's no parent, so don't try to get its __name__.
-
Guido van Rossum yazdı
Added some declarations to shut up compiler.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
have fork and execv (and friends) but not spawnv. They operate exactly like the spawn functions on Windows. A limited set of needed constants is also defined (P_WAIT, P_NOWAIT etc.). Also add getenv() as a familiar alias for environ.get().
-
- 30 Eki, 1999 5 kayıt (commit)
-
-
Just van Rossum yazdı
- Minor tab behavior tweak -- jvr
-
Just van Rossum yazdı
-
Just van Rossum yazdı
-
Just van Rossum yazdı
-
Just van Rossum yazdı
String values will now always be shown with quotes, so one can see the difference between the value 2 and the value '2'. -- jvr
-
- 29 Eki, 1999 7 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
cmpcache sections.
-
Fred Drake yazdı
documentation.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
- 26 Eki, 1999 8 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
documentation sections.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
functionality of cmp.py and cmpcache.py, which are hereby declared obsolescent.
-
Guido van Rossum yazdı
class instance, include the class attributes in the list of possible expansions.
-
Guido van Rossum yazdı
request handling into separate parse_request() and handle_request() methods.
-
Jack Jansen yazdı
-
Guido van Rossum yazdı
not as descriptive as what Barry suggests, but this also catches the (in my opinion important) case where some other C code besides apply() constructs a kwdict that doesn't have the right format. All the other possibilities of getting it wrong (non-dict, wrong keywords etc) are already caught so this makes sense to check here.
-
- 23 Eki, 1999 4 kayıt (commit)
- 22 Eki, 1999 2 kayıt (commit)
-
-
Fred Drake yazdı
-
Guido van Rossum yazdı
keep whatever gethostname() returns. After a suggestion by Doug Wyatt.
-
- 20 Eki, 1999 4 kayıt (commit)
-
-
Fred Drake yazdı
information accessible to Python. When run as a script, just dumps the information back out in the data format, with functions in sorted order and a blank line between different functions. Still need to apply the information somehow.
-
Fred Drake yazdı
Fixed up a few of his ??? comments.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
more than one window argument.
-
- 19 Eki, 1999 2 kayıt (commit)
-
-
Guido van Rossum yazdı
(XXX perhaps a bit too verbose; in particular it is sensitive to all the doc strings.)
-
Guido van Rossum yazdı
module, which is tested by test_binhex.py.
-