]> granicus.if.org Git - python/log
python
26 years ago\itembreak,
Fred Drake [Wed, 6 May 1998 19:36:01 +0000 (19:36 +0000)]
\itembreak,
\itemjoin,
\kwindex:  Revived definitions to support the Python Reference Manual.

26 years agoAdding Tim Peters' ndiff utility.
Guido van Rossum [Wed, 6 May 1998 17:43:30 +0000 (17:43 +0000)]
Adding Tim Peters' ndiff utility.
This is handy for comparing plain-text documentation files,
since it displays intra-line differences.

26 years agoWhen a file name is selected ("OK" button, <Return> in the filename entry),
Fred Drake [Wed, 6 May 1998 17:28:23 +0000 (17:28 +0000)]
When a file name is selected ("OK" button, <Return> in the filename entry),
and the "key" keyword parameter was used to invoke .go(), use the directory
of the selected file as the stored directory to return to when the same key
is used again.  This is useful since the user may well entry at least part
of the path in the filename box instead of doing a lot of clicking around in
the listboxes.

26 years agoAdded a PopupMenu class.
Jack Jansen [Wed, 6 May 1998 15:33:09 +0000 (15:33 +0000)]
Added a PopupMenu class.

26 years agoNew files from Thomas Gellekum
Guido van Rossum [Wed, 6 May 1998 15:14:36 +0000 (15:14 +0000)]
New files from Thomas Gellekum

26 years agoAfter variable expansion, what was formerly a single word can now
Guido van Rossum [Wed, 6 May 1998 14:38:30 +0000 (14:38 +0000)]
After variable expansion, what was formerly a single word can now
contain multiple words, all of which may have to be joined with the
path of the extension directory.
(Sjoerd)

26 years agoRemove Emacs cruft at end.
Guido van Rossum [Wed, 6 May 1998 14:37:41 +0000 (14:37 +0000)]
Remove Emacs cruft at end.

26 years agoAdded table of WSA error codes.
Guido van Rossum [Wed, 6 May 1998 13:48:04 +0000 (13:48 +0000)]
Added table of WSA error codes.

26 years agoVersion for 1.5.1
Jack Jansen [Wed, 6 May 1998 13:25:42 +0000 (13:25 +0000)]
Version for 1.5.1

26 years agoFinal projects for 1.5.1
Jack Jansen [Wed, 6 May 1998 13:25:28 +0000 (13:25 +0000)]
Final projects for 1.5.1

26 years agoMods by Just
Jack Jansen [Wed, 6 May 1998 13:24:38 +0000 (13:24 +0000)]
Mods by Just

26 years agoFix typo in example found by Anthony Starks <anthony_starks@merck.com>,
Fred Drake [Wed, 6 May 1998 12:42:37 +0000 (12:42 +0000)]
Fix typo in example found by Anthony Starks <anthony_starks@merck.com>,
reported to me by Piers Lauder <piers@cs.su.oz.au>.

26 years agoUgly band-aid to work around a bug in Linux ftell().
Guido van Rossum [Tue, 5 May 1998 22:21:35 +0000 (22:21 +0000)]
Ugly band-aid to work around a bug in Linux ftell().

26 years agoAvoid using cut; sed can do this just as well...
Guido van Rossum [Tue, 5 May 1998 20:40:18 +0000 (20:40 +0000)]
Avoid using cut; sed can do this just as well...

26 years agoAvoid using dirname; sed can do this just as well...
Guido van Rossum [Tue, 5 May 1998 20:39:58 +0000 (20:39 +0000)]
Avoid using dirname; sed can do this just as well...

26 years agoPatches to make the proxy code work again. (Why does that always break
Guido van Rossum [Tue, 5 May 1998 13:58:13 +0000 (13:58 +0000)]
Patches to make the proxy code work again.  (Why does that always break
as soon as I change things even just a little bit? :-)  Even works
when accessing a password-protected page through the proxy.  Prompted
by complaints from, and correct operation verified by, Nigel O'Brian.

26 years agoTake out the check for AUTH-LOGIN or AUTH=LOGIN in login() -- some
Guido van Rossum [Tue, 5 May 1998 03:08:46 +0000 (03:08 +0000)]
Take out the check for AUTH-LOGIN or AUTH=LOGIN in login() -- some
servers support LOGIN but don't advertise it.  If it's not supported
the protocol will respond NO.  Approved by Piers Lauder.

26 years agoREMOVE samefile(), sameopenfile(), samestat() -- these cannot be made
Guido van Rossum [Sat, 2 May 1998 00:47:09 +0000 (00:47 +0000)]
REMOVE samefile(), sameopenfile(), samestat() -- these cannot be made
to work reliably (at least I wouldn't know how).

26 years agoChange the names of all methods in the Wm class: they are now
Guido van Rossum [Fri, 1 May 1998 19:48:20 +0000 (19:48 +0000)]
Change the names of all methods in the Wm class: they are now
wm_title(), etc.  The old names (title() etc.) are still defined as
aliases.

This brings all methods up to use the same naming convention: whether
the Tcl syntax is

   .window.path.name command subcommand [options]

or

   command subcommand .window.path.name [optins]

the Python equivalent is always

   windowobject.command_subcommand(options)

26 years agoUse (void) to throw away a function result, not (void *) !
Guido van Rossum [Fri, 1 May 1998 18:58:59 +0000 (18:58 +0000)]
Use (void) to throw away a function result, not (void *) !

26 years agoAnother optimization, probably of negligeable effect: instead of
Guido van Rossum [Thu, 30 Apr 1998 17:50:36 +0000 (17:50 +0000)]
Another optimization, probably of negligeable effect: instead of
calling self.tk.getint() and self.tk.getdouble(), call the globals
getint() and getdouble(), which in turn are just names for the Python
builtins int() and double().  (Making them globals actually save a
dict lookup compared to using the built-in.)  The corresponding
methods of class Misc have been changed similarly.  (Note that
getboolean() hasn't been changed because there's no Python
equivalent.)

The use of int() and float() has another advantage: if/when Tcl calls
can actually return Tcl objects with other types than string, use of
int() and float() is essential.

26 years agoAdd some help for AIX. (Konrad Hinsen)
Guido van Rossum [Thu, 30 Apr 1998 13:34:12 +0000 (13:34 +0000)]
Add some help for AIX.  (Konrad Hinsen)

26 years agoIn _bind(), found a way to test for break without a temp variable.
Guido van Rossum [Wed, 29 Apr 1998 22:16:57 +0000 (22:16 +0000)]
In _bind(), found a way to test for break without a temp variable.

26 years agoSave a tiny bit of time: self.tk.call takes a tuple argument so it's
Guido van Rossum [Wed, 29 Apr 1998 21:57:08 +0000 (21:57 +0000)]
Save a tiny bit of time: self.tk.call takes a tuple argument so it's
not needed to say apply(self.tk.call, t); self.tk.call(t) has the same
effect.  This cuts down tremendously on the number of apply() calls
made.  No measurable effect, but at the very least it saves the lookup
of apply() in the globals!

26 years agoImport MacOS at the top instead of insize Tk.__init__() -- the latter
Guido van Rossum [Wed, 29 Apr 1998 21:43:36 +0000 (21:43 +0000)]
Import MacOS at the top instead of insize Tk.__init__() -- the latter
repeats the I/O for the failed import on each interpreter creation.

26 years agocleanup(): Remove *all* the temp files related to index generation!
Fred Drake [Wed, 29 Apr 1998 21:28:25 +0000 (21:28 +0000)]
cleanup():  Remove *all* the temp files related to index generation!

26 years agoWhen following symlinks to the real executable, use a loop so a
Guido van Rossum [Wed, 29 Apr 1998 21:07:06 +0000 (21:07 +0000)]
When following symlinks to the real executable, use a loop so a
symlink to a symlink can work.
(Jack)

26 years agoWork around lack of support for \if... in latex2html.
Fred Drake [Wed, 29 Apr 1998 17:56:44 +0000 (17:56 +0000)]
Work around lack of support for \if... in latex2html.

26 years agoSet $TEXINPUTS='' to make l2h pick up the right thing from the environment.
Fred Drake [Wed, 29 Apr 1998 16:58:13 +0000 (16:58 +0000)]
Set $TEXINPUTS='' to make l2h pick up the right thing from the environment.

26 years agoStill somewhat experimental speedup. This appears to speed up the
Guido van Rossum [Wed, 29 Apr 1998 16:22:14 +0000 (16:22 +0000)]
Still somewhat experimental speedup.  This appears to speed up the
most common interface to Tcl, the call() method, by maybe 20-25%.

The speedup code avoids the construction of a Tcl command string from
the argument list -- the Tcl argument list is immediately parsed back
by Tcl_Eval() into a list that is *guaranteed* (by Tcl_Merge()) to be
exactly the same list, so instead we look up the command info and call
the command function directly.  If the lookup fails, we fall back to
the old method (Tcl_Merge() + Tcl_Eval()) so we don't need to worry
about special cases like undefined commands or the occasional command
("after") that sets the info.proc pointer to NULL -- let TclEval()
deal with these.

26 years agoAdd a new method of interpreter objects, interpaddr(). This returns
Guido van Rossum [Wed, 29 Apr 1998 16:17:01 +0000 (16:17 +0000)]
Add a new method of interpreter objects, interpaddr().  This returns
the address of the Tcl interpreter object, as an integer.  Not very
useful for the Python programmer, but this can be called by another C
extension that needs to make calls into the Tcl/Tk C API and needs to
get the address of the Tcl interpreter object.  A simple cast of the
return value to (Tcl_Interp *) will do the trick now.

26 years agoFix documentation based on comments from Sean Reifschneider
Fred Drake [Wed, 29 Apr 1998 14:38:34 +0000 (14:38 +0000)]
Fix documentation based on comments from Sean Reifschneider
<jafo-9804@tummy.com>.

Logical markup.

26 years agoReplace all calls to acquire_lock() and release_lock() with acquire()
Guido van Rossum [Wed, 29 Apr 1998 14:29:32 +0000 (14:29 +0000)]
Replace all calls to acquire_lock() and release_lock() with acquire()
and release() instead.

26 years agoMade lint a bit happier.
Fred Drake [Wed, 29 Apr 1998 14:16:32 +0000 (14:16 +0000)]
Made lint a bit happier.

Fixed a memory leak in an error handler.

26 years agoMove a bit closer to HTML generation without depending on the temp files
Fred Drake [Tue, 28 Apr 1998 19:20:43 +0000 (19:20 +0000)]
Move a bit closer to HTML generation without depending on the temp files
being in the current directory.

Be more careful cleaning up.

Correct an error in a comment.

Add recent additions to the dependencies for lib.dvi.

26 years agodo_cmd_sectcode(): Obsolete; removed.
Fred Drake [Tue, 28 Apr 1998 18:38:40 +0000 (18:38 +0000)]
do_cmd_sectcode():  Obsolete; removed.

26 years agoRemove extra cruft for texi processing.
Fred Drake [Tue, 28 Apr 1998 18:37:12 +0000 (18:37 +0000)]
Remove extra cruft for texi processing.

26 years agoDo better hiding of internal names.
Fred Drake [Tue, 28 Apr 1998 18:31:50 +0000 (18:31 +0000)]
Do better hiding of internal names.

26 years agodo_cmd_key(): Obsolete; removed.
Fred Drake [Tue, 28 Apr 1998 18:31:17 +0000 (18:31 +0000)]
do_cmd_key(): Obsolete; removed.

26 years agoFixed \code so word wrapping is allowed.
Fred Drake [Tue, 28 Apr 1998 18:30:34 +0000 (18:30 +0000)]
Fixed \code so word wrapping is allowed.

Removed some old stuff.

Do better hiding of internal names.

26 years agoSection for bisect module.
Fred Drake [Tue, 28 Apr 1998 18:28:21 +0000 (18:28 +0000)]
Section for bisect module.

26 years agoMoved popen2 entry to make more sense.
Fred Drake [Tue, 28 Apr 1998 18:27:53 +0000 (18:27 +0000)]
Moved popen2 entry to make more sense.

Added bisect entry.

26 years agoUpdated.
Fred Drake [Tue, 28 Apr 1998 18:27:22 +0000 (18:27 +0000)]
Updated.

26 years agoGet rid of the unused ifdefed-out old sort code.
Guido van Rossum [Tue, 28 Apr 1998 17:54:03 +0000 (17:54 +0000)]
Get rid of the unused ifdefed-out old sort code.

26 years agoOn the Mac a call to TkMacInitMenus is needed. Also, we pass
Guido van Rossum [Tue, 28 Apr 1998 16:12:43 +0000 (16:12 +0000)]
On the Mac a call to TkMacInitMenus is needed. Also, we pass
appropriate events to Sioux so the console window remains functional.
(Jack)

26 years agoAdd a declaration for strdup() for the Mac.
Guido van Rossum [Tue, 28 Apr 1998 16:10:19 +0000 (16:10 +0000)]
Add a declaration for strdup() for the Mac.
(Jack)

26 years agoGenerate the clear() method manually (calling __GLclear(), another
Guido van Rossum [Tue, 28 Apr 1998 16:09:16 +0000 (16:09 +0000)]
Generate the clear() method manually (calling __GLclear(), another
name for clear()). This fixes the name clash with curses.
(Jack)

26 years agoType casts, and added a strdup() declaration for the Mac.
Guido van Rossum [Tue, 28 Apr 1998 16:08:19 +0000 (16:08 +0000)]
Type casts, and added a strdup() declaration for the Mac.
(Jack)

26 years agoIf USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and str
Guido van Rossum [Tue, 28 Apr 1998 16:06:54 +0000 (16:06 +0000)]
If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and str
routines. This catches a slightly different set of crashes than the
recursive-repr fix.
(Jack)

26 years agoEnable ftruncate() on the Mac.
Guido van Rossum [Tue, 28 Apr 1998 16:05:59 +0000 (16:05 +0000)]
Enable ftruncate() on the Mac.
(Jack)

26 years agoaccept * in return value type and convert it to _ptr after the
Guido van Rossum [Tue, 28 Apr 1998 16:04:50 +0000 (16:04 +0000)]
accept * in return value type and convert it to _ptr after the
typename, as in argument types.
(Jack)

26 years agoStyle and StyleParameter are two different types.
Guido van Rossum [Tue, 28 Apr 1998 16:04:26 +0000 (16:04 +0000)]
Style and StyleParameter are two different types.
(Jack)

26 years agoclass ByAddressType, a simple Type but passed by address even on
Guido van Rossum [Tue, 28 Apr 1998 16:04:12 +0000 (16:04 +0000)]
class ByAddressType, a simple Type but passed by address even on
input.
(Jack)

26 years agoOn the Mac, create the Temporary Items folder if it does not exist yet.
Guido van Rossum [Tue, 28 Apr 1998 16:03:34 +0000 (16:03 +0000)]
On the Mac, create the Temporary Items folder if it does not exist yet.
(Jack)

26 years agoPut quotes around the filename, so spaces in filenames work.
Guido van Rossum [Tue, 28 Apr 1998 16:03:03 +0000 (16:03 +0000)]
Put quotes around the filename, so spaces in filenames work.
(Jack)

26 years agoMac CodeWarrior has faulty declaration for hypot, which we hide with a
Guido van Rossum [Tue, 28 Apr 1998 16:02:29 +0000 (16:02 +0000)]
Mac CodeWarrior has faulty declaration for hypot, which we hide with a
#define.
(Jack)

26 years agotypo in error message (fname vs. file).
Guido van Rossum [Tue, 28 Apr 1998 16:01:13 +0000 (16:01 +0000)]
typo in error message (fname vs. file).
(Jack)

26 years agoSupport byte-swapped dbhash (bsddb) files. Found by Ben Sayer.
Guido van Rossum [Tue, 28 Apr 1998 15:41:03 +0000 (15:41 +0000)]
Support byte-swapped dbhash (bsddb) files.  Found by Ben Sayer.

26 years agoDocument changed semantics -- open() now guesses the db type and error
Guido van Rossum [Tue, 28 Apr 1998 15:29:26 +0000 (15:29 +0000)]
Document changed semantics -- open() now guesses the db type and error
is now a tuple of various and sundry exceptions.

26 years agoOops, I had 'n' and 'c' mixed up in my mind. Get rid of the comment
Guido van Rossum [Tue, 28 Apr 1998 15:23:09 +0000 (15:23 +0000)]
Oops, I had 'n' and 'c' mixed up in my mind.  Get rid of the comment
that wonders what the difference is and explain them properly.

26 years agoInspired by Ben Sayer, rewritten the code and some of the comments to
Guido van Rossum [Tue, 28 Apr 1998 15:19:34 +0000 (15:19 +0000)]
Inspired by Ben Sayer, rewritten the code and some of the comments to
be more intelligent when the database already exists (use the module
for the existing file, according to whichdb).  Noted in the doc
strings that there doesn't seem to be a different between 'c' and 'n'.

26 years agoHook in the calendar and popen2 sections.
Fred Drake [Tue, 28 Apr 1998 14:29:27 +0000 (14:29 +0000)]
Hook in the calendar and popen2 sections.

26 years agocalendar module section for the library reference, by Drew Csillag.
Fred Drake [Tue, 28 Apr 1998 14:28:57 +0000 (14:28 +0000)]
calendar module section for the library reference, by Drew Csillag.

26 years agopopen2 section for the library reference, contributed by Drew Csillag, with
Fred Drake [Tue, 28 Apr 1998 14:28:15 +0000 (14:28 +0000)]
popen2 section for the library reference, contributed by Drew Csillag, with
some reorganization.

26 years agoUse of \key and \kbd were isolated to one instance each in this file;
Fred Drake [Tue, 28 Apr 1998 13:38:54 +0000 (13:38 +0000)]
Use of \key and \kbd were isolated to one instance each in this file;
normalize to \kbd to allow removal of \key from the document class.

26 years agoQuicksort retuned by Tim Peters.
Guido van Rossum [Tue, 28 Apr 1998 13:17:56 +0000 (13:17 +0000)]
Quicksort retuned by Tim Peters.

26 years agoUse a try-except so that the pickle file is written even when we die
Guido van Rossum [Mon, 27 Apr 1998 19:35:15 +0000 (19:35 +0000)]
Use a try-except so that the pickle file is written even when we die
because of an unexpected exception.

26 years agoWhen setting the event structure fields, don't die when the widget
Guido van Rossum [Mon, 27 Apr 1998 19:32:59 +0000 (19:32 +0000)]
When setting the event structure fields, don't die when the widget
name is not registered; simply use the string.  This happens for
tear-off widgets (e.g. if you've registered enter/leave events for the
menu).

26 years agoInstead of calling mktime(), which has all sorts of unwanted side
Guido van Rossum [Mon, 27 Apr 1998 19:04:26 +0000 (19:04 +0000)]
Instead of calling mktime(), which has all sorts of unwanted side
effects, simply zero out the struct tm buffer before using it; this
should take care of the BSD folks' concern just as well.

26 years agoClear the error condition set by ftell().
Guido van Rossum [Mon, 27 Apr 1998 19:01:08 +0000 (19:01 +0000)]
Clear the error condition set by ftell().

26 years agoFeeble attempt at making urlopen more robust -- don't call splituser()
Guido van Rossum [Mon, 27 Apr 1998 15:19:17 +0000 (15:19 +0000)]
Feeble attempt at making urlopen more robust -- don't call splituser()
when splithost() returned no useable host, to avoid calling
splituser() on None.

26 years agoUpdated for 1.5.1
Jack Jansen [Mon, 27 Apr 1998 15:14:36 +0000 (15:14 +0000)]
Updated for 1.5.1

26 years agoUse dialog auto-placement whenever appropriate.
Jack Jansen [Mon, 27 Apr 1998 15:12:13 +0000 (15:12 +0000)]
Use dialog auto-placement whenever appropriate.

26 years agoFixes by Just:
Jack Jansen [Mon, 27 Apr 1998 15:10:43 +0000 (15:10 +0000)]
Fixes by Just:
- Upped version number in about dialog
- Use auto-positioning of dialogs (a sys7 feature I had never heard
  of, _very_ useful).

26 years agoArgument type for SetPort was wrong (WindowPtr in stead of GrafPtr).
Jack Jansen [Mon, 27 Apr 1998 15:09:36 +0000 (15:09 +0000)]
Argument type for SetPort was wrong (WindowPtr in stead of GrafPtr).

26 years agoAdded FOUR_CHAR_CODE define
Jack Jansen [Mon, 27 Apr 1998 15:09:02 +0000 (15:09 +0000)]
Added FOUR_CHAR_CODE define

26 years agoNew versions from Just.
Jack Jansen [Mon, 27 Apr 1998 15:08:39 +0000 (15:08 +0000)]
New versions from Just.

26 years agoRegenerated with FOUR_CHAR_CODE defined
Jack Jansen [Mon, 27 Apr 1998 15:07:43 +0000 (15:07 +0000)]
Regenerated with FOUR_CHAR_CODE defined

26 years agoMention the Mac:Contrib folder
Jack Jansen [Mon, 27 Apr 1998 15:07:20 +0000 (15:07 +0000)]
Mention the Mac:Contrib folder

26 years agoAdded Just's printing demo code.
Jack Jansen [Mon, 27 Apr 1998 15:06:50 +0000 (15:06 +0000)]
Added Just's printing demo code.

26 years agoDocument transfercmd(), ntransfercmd(), delete(), rmd(), size().
Fred Drake [Mon, 27 Apr 1998 14:54:06 +0000 (14:54 +0000)]
Document transfercmd(), ntransfercmd(), delete(), rmd(), size().

Thanks to Timothy Wild <twild@clear.net.nz> for catching the omission of
delete().

26 years agoparse150(): Simplify RE used to parse the message a little, taking advantage
Fred Drake [Mon, 27 Apr 1998 14:39:44 +0000 (14:39 +0000)]
parse150():  Simplify RE used to parse the message a little, taking advantage
of using re instead of regex.

26 years agoAdd link to Anthony Baxter's enhanced version.
Guido van Rossum [Mon, 27 Apr 1998 14:14:41 +0000 (14:14 +0000)]
Add link to Anthony Baxter's enhanced version.

26 years agoclean target: Remove intermediate files from creation of outline in PDF.
Fred Drake [Sat, 25 Apr 1998 04:15:56 +0000 (04:15 +0000)]
clean target:  Remove intermediate files from creation of outline in PDF.

26 years agoLoad the options from the pypaper.sty file before setting up the "base class"
Fred Drake [Sat, 25 Apr 1998 04:12:17 +0000 (04:12 +0000)]
Load the options from the pypaper.sty file before setting up the "base class"
for the manual documents.

26 years agoPaper size / font size configuration file.
Fred Drake [Sat, 25 Apr 1998 04:11:27 +0000 (04:11 +0000)]
Paper size / font size configuration file.

This is separated so I can build A4 and US Letter sizes without having to
edit files.

Anyone who downloads the source package can also simply edit this file,
which is a lot shorter than the manual.cls file, and easier to find the
appropriate line.

26 years agoSimplify how some options get propogated.
Fred Drake [Fri, 24 Apr 1998 21:57:12 +0000 (21:57 +0000)]
Simplify how some options get propogated.

26 years agoAdded libpoplib.tex to dependencies for the library reference.
Fred Drake [Fri, 24 Apr 1998 21:07:22 +0000 (21:07 +0000)]
Added libpoplib.tex to dependencies for the library reference.

Some mods to allow PS to be generated when the current dir is *not* Doc;
to help out with generating A4 versions.

26 years agoAdded a section for the poplib module, contributed by Drew Csillag.
Fred Drake [Fri, 24 Apr 1998 20:49:02 +0000 (20:49 +0000)]
Added a section for the poplib module, contributed by Drew Csillag.

26 years agoAdd entry for poplib.
Fred Drake [Fri, 24 Apr 1998 20:08:28 +0000 (20:08 +0000)]
Add entry for poplib.

26 years agoUse hex() when outputting the various checksums so the test output is the
Guido van Rossum [Fri, 24 Apr 1998 18:31:28 +0000 (18:31 +0000)]
Use hex() when outputting the various checksums so the test output is the
same on 32 and 64 bit machines.

26 years agoFred's right -- we need PyList_SET_ITEM().
Guido van Rossum [Fri, 24 Apr 1998 18:22:02 +0000 (18:22 +0000)]
Fred's right -- we need PyList_SET_ITEM().

26 years agoAdded new folder types
Jack Jansen [Fri, 24 Apr 1998 10:42:01 +0000 (10:42 +0000)]
Added new folder types

26 years agoAdded FOUR_CHAR_CODE define
Jack Jansen [Fri, 24 Apr 1998 10:41:38 +0000 (10:41 +0000)]
Added FOUR_CHAR_CODE define

26 years agoGrmpf, a lot more routines have gotten a "Mac" prefix for their
Jack Jansen [Fri, 24 Apr 1998 10:28:20 +0000 (10:28 +0000)]
Grmpf, a lot more routines have gotten a "Mac" prefix for their
declaration, probably so the universal headers are useable on
windows/unix too. Have to think of a more definite workaround later,
for now we manually declare the old names in the *edit.py files.

26 years agoUse the (new) standard script #! line
Barry Warsaw [Thu, 23 Apr 1998 22:59:33 +0000 (22:59 +0000)]
Use the (new) standard script #! line

Convert to re module; remove all references to regexp and regsub

Added support for the new texinfo @url{} and @email{} commands

26 years agoThis script appears to no longer be in the toolchain for Python
Barry Warsaw [Thu, 23 Apr 1998 22:57:16 +0000 (22:57 +0000)]
This script appears to no longer be in the toolchain for Python
documentation, so it has been moved to ../../Tools/scripts

Fred, please verify.

26 years agoIn-line the code in range() to set the list items; there's really no
Guido van Rossum [Thu, 23 Apr 1998 21:46:19 +0000 (21:46 +0000)]
In-line the code in range() to set the list items; there's really no
need to call PyList_SetItem(v,i,w) when PyList_GET_ITEM(v,i)=w {sic}
will do.

26 years agoSmall corrections to comments that were cloned from aifc; moreover
Guido van Rossum [Thu, 23 Apr 1998 21:40:02 +0000 (21:40 +0000)]
Small corrections to comments that were cloned from aifc; moreover
the description of setparams() was wrong.

wave.py: Include the tag of an unknown format in the exception.

26 years agoNew test sample -- "Nobody expects the Spanish Inquisition!"
Guido van Rossum [Thu, 23 Apr 1998 21:37:22 +0000 (21:37 +0000)]
New test sample -- "Nobody expects the Spanish Inquisition!"