Fred Drake
a2e4017394
Shorten the synopsis that gets into the table of contents.
1999-01-05 22:54:49 +00:00
Fred Drake
ccc627200a
write_idxfile(): New function. Isolate format of the external index
...
data file used by buildindex.py.
next_argument_id(): Removed; no longer used.
next_argument(): Doesn't use next_argument_id(), just does the work.
gen_target(), gen_target_name(): Removed, no longer used. The only
place that used them now does the (trivial) work directly.
Lots of little changes so we never have to pass around $br_id values
all over the place. The only places they're used now new IDs are
generated as needed.
1999-01-05 22:16:29 +00:00
Fred Drake
02e18b4b84
Added missing "from" in IOError description.
1999-01-05 21:42:18 +00:00
Fred Drake
26f0f65653
Remove obsolete comment.
1999-01-05 20:53:43 +00:00
Guido van Rossum
4494101858
Incorporate fix suggested by /Fredrik Lundh in the newsgroup to cope
...
with trailing garbage generated by some broke uuencoders.
1999-01-05 18:02:24 +00:00
Guido van Rossum
716a89c606
Patch by Charles Waldman to implement an optional nlines argument to
...
w.scroll(). (It then calls wscrl(win, nlines) instead of scoll(win).)
1999-01-05 17:16:46 +00:00
Fred Drake
5d56d3665f
Make the documents that have indexes dependent on the buildindex.py
...
script.
1999-01-05 15:49:39 +00:00
Fred Drake
7d45f6dcc4
do_cmd_methodline(): New function, implements indexing version of
...
\methodline.
Fixed up support for \withsubitem, hopefully improving the fidelity of
the index a bit.
1999-01-05 14:39:27 +00:00
Guido van Rossum
caa0606471
Upgraded to WISE 5.0g; bumped to 1.5.2b2; added dialog for Tcl.
1999-01-05 14:10:29 +00:00
Fred Drake
3b07480a17
trim_ignored_letters(): Simplify a little.
1999-01-04 22:00:56 +00:00
Guido van Rossum
1e899cdeaa
Hm. There was a boundary condition error at the end of the file too.
1999-01-04 21:19:09 +00:00
Guido van Rossum
4eac47cf50
Hm. Add Unix binding for replace, too.
1999-01-04 21:18:40 +00:00
Fred Drake
8d7e11a8c1
Update information on the version of latex2html to use, including
...
complaint about 98.2b8 problems.
1999-01-04 18:25:38 +00:00
Guido van Rossum
f8d579c5e3
This hopefully fixes the problem of having to set PATH
...
in autoexec.bat in order to find the Tcl DLLs -- Tkinter calls FixTk
which will hunt around in a few common places and then set PATH
and try again, or else issue a big clarifying error message.
1999-01-04 18:06:45 +00:00
Guido van Rossum
88303194a5
Fix two places (seek and truncate) where a cascade of PyArg_Parse
...
calls was used instead of a single PyArg_ParseTuple call with an
optional argument.
1999-01-04 17:22:18 +00:00
Guido van Rossum
e89d4506c1
Chris Herborth writes:
...
Here's a little cleanup of the BeOS/ directory for 1.5.2b2; it makes the
ar-fake, linkcc and linkmodule shell scripts a little smarter (and,
in the case of PowerPC systems, quieter :-).
1999-01-04 16:49:09 +00:00
Guido van Rossum
cad3d47f1e
Chris Herborth writes:
...
Donn Cave tells me the PyImport_BeImageID() function isn't needed anymore.
1999-01-04 16:45:59 +00:00
Guido van Rossum
d3b0921f57
Chris Herborth writes:
...
Donn Cave tells me the PyImport_BeImageID() function isn't needed anymore.
1999-01-04 16:39:38 +00:00
Guido van Rossum
906572a06d
Ran eventparse.py again.
1999-01-04 16:35:02 +00:00
Guido van Rossum
e911c3e20c
Added Unix Meta-q key binding;
...
fix find_paragraph when at start of file.
1999-01-04 16:34:41 +00:00
Guido van Rossum
16b91f89b5
Added Meta-/ binding for Unix as alt for Alt-/.
1999-01-04 16:32:21 +00:00
Guido van Rossum
5bfffbd79d
Add unix binding for grep (otherwise the menu entry doesn't work!)
1999-01-04 16:32:04 +00:00
Guido van Rossum
1ae3f89611
Adjusted Unix height to work with fvwm96. :=(
1999-01-04 16:31:31 +00:00
Fred Drake
b75d021081
Typo: "TWELV" --> "TWELVE"
...
Added note at top, since LaTeX style writers like to force name
changes when someone else makes a change to the style. I'm sending a
note to the author reporting the error and asking for an updated
version.
This cannot be distributed in this form. This will be resolved when I
get a response from Ulf Lindgren.
Typo reported by rwolff@noao.edu (Richard Wolff).
1999-01-04 16:15:02 +00:00
Guido van Rossum
d53869ea33
Need to import sys!
1999-01-04 15:52:33 +00:00
Guido van Rossum
f903898fff
Formatted some paragraphs
1999-01-04 13:05:58 +00:00
Guido van Rossum
94e82ceeac
Add new extension to reformat a (text) paragraph.
1999-01-04 13:04:54 +00:00
Guido van Rossum
46facd1bac
Typo in Win specific height setting.
1999-01-04 12:23:46 +00:00
Guido van Rossum
909bc18188
Recover from failed saves; when a file turns out to be a directory,
...
create a directory and moer the original file to the index.html.
1999-01-03 13:06:00 +00:00
Guido van Rossum
0a6363d7e1
Get rid of the strptype() declaration -- on some BSD systems, it's a
...
conflict, and it should be declared in time.h anyway.
(Too bad if gcc -Wall won't be happy if it isn't declared...)
1999-01-03 13:00:34 +00:00
Guido van Rossum
e0d7dae3b8
Add sys.hexversion, which is an integer encoding the version in hexadecimal.
...
In other words, hex(sys.hexversion) == 0x010502b2 for Python 1.5.2b2.
This is derived from the new variable PY_VERSION_HEX defined in patchlevel.h.
(Cute, eh?)
1999-01-03 12:55:39 +00:00
Guido van Rossum
6e0a3499ab
Use PY_VERSION instead of PATCHLEVEL.
1999-01-03 12:41:50 +00:00
Guido van Rossum
f1176c4815
New version identification scheme.
...
The version numbers are now exported by Python.h.
Also rolled back the API version change -- it's back to 1007!
1999-01-03 12:40:24 +00:00
Guido van Rossum
33f2b7b257
Added something like Tim Peters' backspace patch.
1999-01-03 00:47:35 +00:00
Guido van Rossum
0c65e2504e
Adapted to Unix (i.e., more hardcoded constants).
1999-01-03 00:47:07 +00:00
Guido van Rossum
47ae028071
Call PyInitFrozenExtensions() as requested by Mark Hammond (his patch).
1999-01-02 21:42:48 +00:00
Guido van Rossum
504b0bf066
Checking in IDLE 0.2.
...
Much has changed -- too much, in fact, to write down.
The big news is that there's a standard way to write IDLE extensions;
see extend.txt. Some sample extensions have been provided, and
some existing code has been converted to extensions. Probably the
biggest new user feature is a new search dialog with more options,
search and replace, and even search in files (grep).
This is exactly as downloaded from my laptop after returning
from the holidays -- it hasn't even been tested on Unix yet.
1999-01-02 21:28:54 +00:00
Andrew M. Kuchling
f07c328c07
Document the optional mode argument (Z_FLUSH, Z_SYNC_FLUSH, etc.)
...
to the flush() method of compressor objects.
1998-12-31 21:14:23 +00:00
Barry Warsaw
c0ef565cdf
D.M. Pick gives me a more accurate distillation of his `uk' explanation :-)
1998-12-29 02:52:11 +00:00
Fred Drake
94c4a7976f
Added index entries to make it easier to locate directory & file operations.
1998-12-28 21:58:57 +00:00
Fred Drake
8692998018
Added index entries to make it easier to locate directory operations.
1998-12-28 21:58:15 +00:00
Fred Drake
cc09e8dc82
Clarified what Python versions the interactivity chapter applies to,
...
and what it doesn't apply to.
1998-12-28 21:21:36 +00:00
Fred Drake
76fa3b73d6
Remove recently documented modules from the undoc list.
1998-12-28 20:53:19 +00:00
Fred Drake
03a0235793
Print a line to the console reporting the number of index nodes
...
processed. This can be interesting to see.
1998-12-28 20:46:53 +00:00
Fred Drake
566c8327f7
Added entry for libshutil.tex.
1998-12-28 20:17:33 +00:00
Fred Drake
449e18f459
Add documentation for shutil module.
1998-12-28 20:16:58 +00:00
Fred Drake
cd058539a8
Adjust a few niggles that affected the HTML conversion (a couple of
...
"^"s were being dropped in the context of [^...]).
1998-12-28 19:03:24 +00:00
Fred Drake
d82af0b8ec
Remove all use of $* in commands; some makes (Solaris 2.5, IRIX 6.X)
...
only expand this in dependency lists. Thanks for Sjoerd Mullendar for
pointing this out.
1998-12-28 15:17:22 +00:00
Barry Warsaw
a2b38030d6
Update on history of `uk' top level, greatly condensed from David
...
Pick's emailed account.
1998-12-27 20:08:49 +00:00
Guido van Rossum
82eae9eaa7
Added mt_interact() -- multithreaded version of interact().
...
interact() automatically uses this on Windows (where the
single-threaded version doesn't work).
1998-12-23 23:04:17 +00:00