- 05 Nov, 1999 1 commit
-
-
Guido van Rossum authored
-
- 04 Nov, 1999 5 commits
-
-
Fred Drake authored
parameter match. Error pointed out by François Pinard <pinard@iro.umontreal.ca> on c.l.py.
-
Guido van Rossum authored
<arpa/inet.h> doesn't exist and isn't needed; and inet_addr() returns a structure containing a long rather than a long.
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
- changed the API of process() so it will return a list of missing modules instead of raising an exception. - minor cleanups (jvr)
-
- 03 Nov, 1999 3 commits
-
-
Barry Warsaw authored
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 authored
separately but now is included in the standard Python distribution.
-
Guido van Rossum authored
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 Nov, 1999 5 commits
-
-
Guido van Rossum authored
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 authored
Sometimes there's no parent, so don't try to get its __name__.
-
Guido van Rossum authored
Added some declarations to shut up compiler.
-
Guido van Rossum authored
-
Guido van Rossum authored
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 Oct, 1999 5 commits
-
-
Just van Rossum authored
- Minor tab behavior tweak -- jvr
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
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 Oct, 1999 7 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
cmpcache sections.
-
Fred Drake authored
documentation.
-
Fred Drake authored
-
Fred Drake authored
-
- 26 Oct, 1999 8 commits
-
-
Fred Drake authored
-
Fred Drake authored
documentation sections.
-
Fred Drake authored
-
Guido van Rossum authored
functionality of cmp.py and cmpcache.py, which are hereby declared obsolescent.
-
Guido van Rossum authored
class instance, include the class attributes in the list of possible expansions.
-
Guido van Rossum authored
request handling into separate parse_request() and handle_request() methods.
-
Jack Jansen authored
-
Guido van Rossum authored
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 Oct, 1999 4 commits
- 22 Oct, 1999 2 commits
-
-
Fred Drake authored
-
Guido van Rossum authored
keep whatever gethostname() returns. After a suggestion by Doug Wyatt.
-