Fred Drake
6e9ea59a43
Use \programopt in one place.
1999-11-09 19:44:44 +00:00
Fred Drake
91f31eab1c
Added citetitle and programopt.
...
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.
1999-11-09 19:33:24 +00:00
Fred Drake
d290c10890
Use \programopt in one place.
1999-11-09 18:03:00 +00:00
Fred Drake
310ee61f20
Missed a couple of program options that had been marked by \code.
1999-11-09 17:31:42 +00:00
Fred Drake
a24f7b759a
Use \programopt in one place.
1999-11-09 17:03:45 +00:00
Fred Drake
be48646cfa
Use \citetitle and \programopt as appropriate.
1999-11-09 17:03:03 +00:00
Fred Drake
7b8195a209
\programopt: New macro, used to mark command-line parameters in the
...
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.
1999-11-09 17:02:11 +00:00
Fred Drake
c9f5fe0d1c
do_cmd_programopt(): New function, similar to do_cmd_program().
...
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.
1999-11-09 16:59:42 +00:00
Guido van Rossum
768d2271a8
Oops. Remove some garbage from the doc string that was accidentally
...
checked in due to a patching mishap. Reported by Detlef Lannert;
thanks!
1999-11-09 16:36:45 +00:00
Guido van Rossum
09cbb01989
Jack Jansen: Mac has no EINTR.
1999-11-08 15:32:27 +00:00
Greg Stein
d4c64ba0f9
Add some header comments to all the files.
1999-11-07 13:14:58 +00:00
Greg Stein
281b8d82f7
initial checkin for my Python stuff.
1999-11-07 12:54:45 +00:00
Guido van Rossum
e168c65603
Patch by Dieter Maurer to make things work for Tcl/Tk 8.1. This
...
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.
1999-11-05 18:11:23 +00:00
Guido van Rossum
6b26a06037
Patch by Dieter Maurer to make things work for Tcl/Tk 8.1 (tested with
...
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.
1999-11-05 18:09:56 +00:00
Jack Jansen
f941acda60
Added HAVE_LIMITS_H, MAVE_MEMMOVE, HAVE_STRERROR, HAVE_LOCALE_H
...
since we have these in the current CW release (and probably already had them
quite some time, but never added the defines).
1999-11-05 15:54:46 +00:00
Jack Jansen
58fa818c08
Changes to ProgressBar:
...
- Don't crash if max=0
- set() now has an optional max parameter, to set the maximum value.
1999-11-05 15:53:10 +00:00
Guido van Rossum
fd6aabbb35
Checking in text versions of release forms and explanation.
1999-11-05 15:21:08 +00:00
Fred Drake
e4f13660f8
split() docstring: Made signature and description for the first
...
parameter match. Error pointed out by François
Pinard <pinard@iro.umontreal.ca> on c.l.py.
1999-11-04 19:19:48 +00:00
Guido van Rossum
1b6e463bd5
Bugfix by Jack Jansen for Macintosh (for the inet_ntoa/aton changes):
...
<arpa/inet.h> doesn't exist and isn't needed; and inet_addr() returns
a structure containing a long rather than a long.
1999-11-04 18:22:29 +00:00
Just van Rossum
29e5184491
Typo fixed in docstring; removed unneccesary import. (jvr)
1999-11-04 10:30:13 +00:00
Just van Rossum
2e5b0f2166
Adapted to new macmudulefinder.process() API. (jvr)
1999-11-04 10:28:59 +00:00
Just van Rossum
8ff52764ef
- changed the API of process() so it will return a list of missing modules instead of raising an exception.
...
- minor cleanups
(jvr)
1999-11-04 10:28:00 +00:00
Barry Warsaw
5dbf526e8e
Several improvements, some of where were contributed by Bernhard
...
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.
1999-11-03 18:47:52 +00:00
Barry Warsaw
a507c32991
Python equivalent of xgettext(1). This was originally released
...
separately but now is included in the standard Python distribution.
1999-11-03 16:46:05 +00:00
Guido van Rossum
19878f58fe
Sjoerd Mullender writes:
...
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.
1999-11-03 13:10:07 +00:00
Guido van Rossum
dd7cbbf4d3
Oops. spawnl() and spawnle() should be implemented on Windows too.
...
Also added a comment that the 'p' variants (spawnvp() etc.) are *not*
supported on Windows. (They could be by adding them to posixmodule.c)
1999-11-02 20:44:07 +00:00
Guido van Rossum
8b4b46e4f3
Fix a bug reported by Toby Dickenson (on 18 May 1999).
...
Sometimes there's no parent, so don't try to get its __name__.
1999-11-02 15:46:44 +00:00
Guido van Rossum
cfd76a202b
Sjoerd Mullender:
...
Added some declarations to shut up compiler.
1999-11-02 15:44:40 +00:00
Guido van Rossum
f618a48d11
Correct typo in walk.__doc__ reported by Francois Pinard.
1999-11-02 13:29:08 +00:00
Guido van Rossum
5a2ca9328d
Checking in a bunch of spawn functions. These are only defined if we
...
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().
1999-11-02 13:27:32 +00:00
Just van Rossum
66e53854d6
- windowbounds() now works with multiple screens (window position prefs!)
...
- Minor tab behavior tweak
-- jvr
1999-10-30 11:49:07 +00:00
Just van Rossum
7171df3e7e
Very minor little things... -- jvr
1999-10-30 11:46:18 +00:00
Just van Rossum
afca4153a5
New __version__ number (1.0!) -- jvr
1999-10-30 11:45:16 +00:00
Just van Rossum
5f740070b1
Minor indentation cleanup -- jvr
1999-10-30 11:44:25 +00:00
Just van Rossum
460ff20cd6
String values will now always be shown with quotes, so one can see the difference between the value 2 and the value '2'. -- jvr
1999-10-30 11:43:25 +00:00
Fred Drake
5bd608d46e
Change the suggestions pointer at the bottom of generated HTML pages.
1999-10-29 20:51:43 +00:00
Fred Drake
c6d45afb1b
Straighten out dependencies so changes in the texinputs/* get reflected.
1999-10-29 20:49:23 +00:00
Fred Drake
6cf186b867
pathes --> paths; typo reported by Gerry Wiener <gerry@ucar.edu>.
1999-10-29 17:51:29 +00:00
Fred Drake
5a3194688d
Added dependency on filecmp section, removed dependencies on cmp and
...
cmpcache sections.
1999-10-29 17:27:08 +00:00
Fred Drake
47a27b6640
Make references to new filecmp module hyperlinks now that there's
...
documentation.
1999-10-29 17:25:59 +00:00
Fred Drake
adf2dbfced
Added section for filecmp.
1999-10-29 17:24:12 +00:00
Fred Drake
c7b5b3c998
filecmp documentation from Moshe Zadka <moshez@math.huji.ac.il>.
1999-10-29 17:23:15 +00:00
Fred Drake
7eaf6828cb
Added deprecation notes, in case anyone decides to read these anyway.
1999-10-26 16:31:51 +00:00
Fred Drake
143db4b041
cmp and cmpcache are now obsolete, so don't include their
...
documentation sections.
1999-10-26 16:28:04 +00:00
Fred Drake
a8052a3113
Added cmp and cmpcache to the "Obsolete" section.
1999-10-26 16:27:28 +00:00
Guido van Rossum
2d72687006
New module by Moshe Zadka (submitted on Sept. 25). This unifies the
...
functionality of cmp.py and cmpcache.py, which are hereby declared
obsolescent.
1999-10-26 14:02:01 +00:00
Guido van Rossum
4e20de59dd
Patch by Michael Hudson: when the object of attribute expansion is a
...
class instance, include the class attributes in the list of possible
expansions.
1999-10-26 13:09:08 +00:00
Guido van Rossum
d65b53923e
Fix by Moshe Zadka (cleaned up and documented by GvR) to break out the
...
request handling into separate parse_request() and handle_request()
methods.
1999-10-26 13:01:36 +00:00
Jack Jansen
32a15adeab
MrC also needs BAD_STATIC_FORWARD define.
1999-10-26 09:25:32 +00:00
Guido van Rossum
25da5bebd8
Fix PR117. The error message is "keywords must be strings". Perhaps
...
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.
1999-10-26 00:12:20 +00:00