- 10 Nov, 1999 4 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
- 09 Nov, 1999 12 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
Made var get renamed to varname (more like DocBook). Other names should probably be changed as well; still waiting for the DocBook book to arrive.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
text. Looks like \program. \citetitle: New macro, used to mark titles of cited works (like the names of the Python manuals). Accepts & discards an optional parameter that is only used by the HTML formatter. Looks like \emph.
-
Fred Drake authored
do_cmd_citetitle(): New function. Extracts one optional and one required parameter. If the optional one is provided, it is used a URL (or relative URL) and the text of the required parameter is turned into a hyperlink.
-
Guido van Rossum authored
checked in due to a patching mishap. Reported by Detlef Lannert; thanks!
-
- 08 Nov, 1999 1 commit
-
-
Guido van Rossum authored
-
- 07 Nov, 1999 2 commits
-
-
Greg Stein authored
-
Greg Stein authored
-
- 05 Nov, 1999 5 commits
-
-
Guido van Rossum authored
simply moves the call to Tk_MainWindow() after the Tcl/Tk initialization calls. The patch is unconditional, it works with earlier and later versions as well.
-
Guido van Rossum authored
8.1.1). His approach doesn't work with Tcl/Tk 8.2, so I've placed it inside #if TKMAJORMINOR == 8001 and #endif. See also his patch for tkappinit.c.
-
Jack Jansen authored
since we have these in the current CW release (and probably already had them quite some time, but never added the defines).
-
Jack Jansen authored
- Don't crash if max=0 - set() now has an optional max parameter, to set the maximum value.
-
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 3 commits
-
-
Just van Rossum authored
- Minor tab behavior tweak -- jvr
-
Just van Rossum authored
-
Just van Rossum authored
-