]> granicus.if.org Git - python/log
python
25 years agoSjoerd Mullender writes:
Guido van Rossum [Thu, 18 Mar 1999 15:10:44 +0000 (15:10 +0000)]
Sjoerd Mullender writes:

If a filename on Windows starts with \\, it is converted to a URL
which starts with ////.  If this URL is passed to urlparse.urlparse
you get a path that starts with // (and an empty netloc).  If you pass
the result back to urlparse.urlunparse, you get a URL that starts with
//, which is parsed differently by urlparse.urlparse.  The fix is to
add the (empty) netloc with accompanying slashes if the path in
urlunparse starts with //.  Do this for all schemes that use a netloc.

25 years agoMake this simpler; don't care about the paper size. Require that the
Fred Drake [Thu, 18 Mar 1999 14:57:53 +0000 (14:57 +0000)]
Make this simpler; don't care about the paper size.  Require that the
files exist in the current directory.

Add "Documenting Python" to the list of documents listed.

25 years agoSjoerd Mullender writes:
Guido van Rossum [Thu, 18 Mar 1999 14:21:41 +0000 (14:21 +0000)]
Sjoerd Mullender writes:

Pathnames of files on other hosts in the same domain
(\\host\path\to\file) are not translated correctly to URLs and back.
The URL should be something like file:////host/path/to/file.
Note that a combination of drive letter and remote host is not
possible.

25 years agoRemove all owner resources from template, and if no owner resource contained in
Jack Jansen [Wed, 17 Mar 1999 22:57:55 +0000 (22:57 +0000)]
Remove all owner resources from template, and if no owner resource contained in
applet-specific rsrc file we add a "Pyta" owner resource. Owner resources have both id=0 and name="Owner resource" (is this always true?).

25 years agoRemoved all owner resources except for "Pyth".
Jack Jansen [Wed, 17 Mar 1999 22:56:13 +0000 (22:56 +0000)]
Removed all owner resources except for "Pyth".

25 years agoDelete non-standard-conforming code in urljoin() that would use the
Guido van Rossum [Wed, 17 Mar 1999 22:30:10 +0000 (22:30 +0000)]
Delete non-standard-conforming code in urljoin() that would use the
netloc from the base url as the default netloc for the resulting url
even if the schemes differ.

Once upon a time, when the web was wild, this was a valuable hack
because some people had a URL referencing an ftp server colocated with
an http server without having the host in the ftp URL (so they could
replicate it or change the hostname easily).

More recently, after the file: scheme got added back to the list of
schemes that accept a netloc, it turns out that this caused weirdness
when joining an http: URL with a file: URL -- the resulting file: URL
would always inherit the host from the http: URL because the file:
scheme supports a netloc but in practice never has one.

There are two reasons to get rid of the old, once-valuable hack,
instead of removing the file: scheme from the uses_netloc list.  One,
the RFC says that file: uses the netloc syntax, and does not endorse
the old hack.  Two, neither netscape 4.5 nor IE 4.0 support the old
hack.

25 years agoNote that abspath() was added in 1.5.2.
Fred Drake [Wed, 17 Mar 1999 22:25:11 +0000 (22:25 +0000)]
Note that abspath() was added in 1.5.2.

25 years agoFor some reason these files had never been checked in.
Jack Jansen [Wed, 17 Mar 1999 21:45:35 +0000 (21:45 +0000)]
For some reason these files had never been checked in.

25 years agoFor reasons unknown these files were never checked in to CVS.
Jack Jansen [Wed, 17 Mar 1999 21:44:07 +0000 (21:44 +0000)]
For reasons unknown these files were never checked in to CVS.

25 years agoAdd DLL level b/w compat for PySequence_In and PyEval_CallObject
Guido van Rossum [Wed, 17 Mar 1999 18:44:39 +0000 (18:44 +0000)]
Add DLL level b/w compat for PySequence_In and PyEval_CallObject

25 years agoBe sure "make" understands the "doc" target is phony.
Fred Drake [Wed, 17 Mar 1999 16:06:51 +0000 (16:06 +0000)]
Be sure "make" understands the "doc" target is phony.

25 years agoBug reported by Jim Robinson:
Guido van Rossum [Tue, 16 Mar 1999 21:54:50 +0000 (21:54 +0000)]
Bug reported by Jim Robinson:

An attempt to execute grid_slaves with arguments (0,0) results in
*all* of the slaves being returned, not just the slave associated with
row 0, column 0.  This is because the test for arguments in the method
does not test to see if row (and column) does not equal None, but
rather just whether is evaluates to non-false.  A value of 0 fails
this test.

25 years agoFixed minor nits, added index entries to make these easier to find for people
Fred Drake [Tue, 16 Mar 1999 16:40:01 +0000 (16:40 +0000)]
Fixed minor nits, added index entries to make these easier to find for people
not familiar with Unix terminology.

25 years agoIgnore some more files kept by mkhowto --keep.
Fred Drake [Tue, 16 Mar 1999 16:14:51 +0000 (16:14 +0000)]
Ignore some more files kept by mkhowto --keep.

25 years agoAdd support for "Documenting Python".
Fred Drake [Tue, 16 Mar 1999 16:11:27 +0000 (16:11 +0000)]
Add support for "Documenting Python".

25 years agoRemoved the embedded sections showing module documentation; just
Fred Drake [Tue, 16 Mar 1999 16:10:31 +0000 (16:10 +0000)]
Removed the embedded sections showing module documentation; just
\input the module template.

25 years agoNew document: "Documenting Python".
Fred Drake [Tue, 16 Mar 1999 16:09:13 +0000 (16:09 +0000)]
New document: "Documenting Python".

25 years agoMarkup for documenting LaTeX macros and environments.
Fred Drake [Tue, 16 Mar 1999 16:08:26 +0000 (16:08 +0000)]
Markup for documenting LaTeX macros and environments.

25 years agoDocstring fix: acosh() returns the hyperbolic arccosine, not the
Fred Drake [Tue, 16 Mar 1999 14:17:48 +0000 (14:17 +0000)]
Docstring fix:  acosh() returns the hyperbolic arccosine, not the
hyperbolic cosine.  Problem report via David Ascher by one of his
students.

25 years agoShould test for gethost*by*name_r, not for gethostname_r (which
Guido van Rossum [Mon, 15 Mar 1999 21:40:59 +0000 (21:40 +0000)]
Should test for gethost*by*name_r, not for gethostname_r (which
doesn't exist and doesn't make sense).

25 years agoPatch by Rob Riggs for Linux -- glibc2 has a different argument
Guido van Rossum [Mon, 15 Mar 1999 21:40:14 +0000 (21:40 +0000)]
Patch by Rob Riggs for Linux -- glibc2 has a different argument
converntion for gethostbyname_r() etc. than Solaris!

25 years agoRob Riggs wrote:
Guido van Rossum [Mon, 15 Mar 1999 20:27:53 +0000 (20:27 +0000)]
Rob Riggs wrote:

"""
Spec says that on success pthread_create returns 0. It does not say
that an error code will be < 0. Linux glibc2 pthread_create() returns
ENOMEM (12) when one exceed process limits. (It looks like it should
return EAGAIN, but that's another story.)

For reference, see:
http://www.opengroup.org/onlinepubs/7908799/xsh/pthread_create.html
"""

[I have a feeling that similar bugs were fixed before; perhaps someone
could check that all error checks no check for != 0?]

25 years agoNew mixin class that defines cmp and hash that use
Guido van Rossum [Mon, 15 Mar 1999 16:37:54 +0000 (16:37 +0000)]
New mixin class that defines cmp and hash that use
the ob_itself pointer.  This allows (when using the mixin)
different Python objects pointing to the same C object and
behaving well as dictionary keys.

Or so sez Jack Jansen...

25 years agoYet another patch by Sjoerd Mullender:
Guido van Rossum [Mon, 15 Mar 1999 16:16:29 +0000 (16:16 +0000)]
Yet another patch by Sjoerd Mullender:

Don't convert URLs to URLs using pathname2url.

25 years agoAdded the new sections from Skip Montanaro.
Fred Drake [Mon, 15 Mar 1999 15:47:30 +0000 (15:47 +0000)]
Added the new sections from Skip Montanaro.

25 years agoPreliminary mhlib and telnetlib documents from Skip Montanaro -- thanks, Skip!
Fred Drake [Mon, 15 Mar 1999 15:44:18 +0000 (15:44 +0000)]
Preliminary mhlib and telnetlib documents from Skip Montanaro -- thanks, Skip!

25 years agoIf a control has no refcon pointing back to the Python object we create a new
Jack Jansen [Sat, 13 Mar 1999 23:07:32 +0000 (23:07 +0000)]
If a control has no refcon pointing back to the Python object we create a new
Python object. This needs a new bgenObjectDefinition.py, which implements
compare and hash functions.

25 years agoPatch by Michael Scharf. He writes:
Guido van Rossum [Fri, 12 Mar 1999 22:15:43 +0000 (22:15 +0000)]
Patch by Michael Scharf.  He writes:

    The module cmd requires for each do_xxx command a help_xxx
    function. I think this is a little old fashioned.

    Here is a patch: use the docstring as help if no help_xxx
    function can be found.

[I'm tempted to rip out all the help_* functions from pdb, but I'll
resist it.  Any takers?  --Guido]

25 years agoBug submitted by Wayne Knowles, who writes:
Guido van Rossum [Fri, 12 Mar 1999 22:07:05 +0000 (22:07 +0000)]
Bug submitted by Wayne Knowles, who writes:

   Under Windows, python freeze.py -o hello hello.py
   creates all the correct files in the hello subdirectory, but the
   Makefile has the directory prefix in it for frozen_extensions.c
   nmake fails because it tries to locate hello/frozen_extensions.c

(His fix adds a call to os.path.basename() in the appropriate place.)

25 years agoFixed tons of small markup problems.
Fred Drake [Fri, 12 Mar 1999 19:57:38 +0000 (19:57 +0000)]
Fixed tons of small markup problems.

25 years agoVladimir has restructured his code somewhat so that the blocks are now
Guido van Rossum [Fri, 12 Mar 1999 19:43:17 +0000 (19:43 +0000)]
Vladimir has restructured his code somewhat so that the blocks are now
represented by an explicit structure.  (There are still too many casts
in the code, but that may be unavoidable.)

Also added code so that with -vv it is very chatty about what it does.

25 years agoRemove stuff with unsure copyright status
Guido van Rossum [Fri, 12 Mar 1999 19:31:51 +0000 (19:31 +0000)]
Remove stuff with unsure copyright status

25 years agoChange #! line to modern usage; also chmod +x
Guido van Rossum [Fri, 12 Mar 1999 19:07:59 +0000 (19:07 +0000)]
Change #! line to modern usage; also chmod +x

25 years agoChange #! line to modern usage
Guido van Rossum [Fri, 12 Mar 1999 19:05:49 +0000 (19:05 +0000)]
Change #! line to modern usage

25 years agoAdded availabililty annotations to respond to concerns of /F.
Fred Drake [Fri, 12 Mar 1999 18:34:21 +0000 (18:34 +0000)]
Added availabililty annotations to respond to concerns of /F.

25 years agoFixed grammatical error reported by Donald Wallace Rouse II
Fred Drake [Fri, 12 Mar 1999 18:21:32 +0000 (18:21 +0000)]
Fixed grammatical error reported by Donald Wallace Rouse II
<dwr2@ix.netcom.com>.

25 years agoFixup the module keys. There were some problems with hosting / processing
Fred Drake [Fri, 12 Mar 1999 16:24:22 +0000 (16:24 +0000)]
Fixup the module keys.  There were some problems with hosting / processing
file HTML files on Windows machines do to case insensitivity.

25 years agoUpdates based on comments from /F.
Fred Drake [Fri, 12 Mar 1999 15:27:35 +0000 (15:27 +0000)]
Updates based on comments from /F.

25 years agoFrom: Sjoerd Mullender
Guido van Rossum [Fri, 12 Mar 1999 14:31:10 +0000 (14:31 +0000)]
From: Sjoerd Mullender

The filename to URL conversion didn't properly quote special
characters.
The URL to filename didn't properly unquote special chatacters.

25 years agoOK, try again. Vladimir gave me a fix for the alignment bus error,
Guido van Rossum [Fri, 12 Mar 1999 00:12:21 +0000 (00:12 +0000)]
OK, try again.  Vladimir gave me a fix for the alignment bus error,
so here's his patch again.  This time it works (at least on Solaris,
Linux and Irix).

25 years agoDon't crash when sys.path contains an empty string.
Guido van Rossum [Thu, 11 Mar 1999 23:21:23 +0000 (23:21 +0000)]
Don't crash when sys.path contains an empty string.

25 years agoAdd support for <platform>, some cleanup of module section after
Fred Drake [Thu, 11 Mar 1999 17:35:12 +0000 (17:35 +0000)]
Add support for <platform>, some cleanup of module section after
creating the <moduleinfo>.

25 years agoThis file was never supposed to be part of IDLE.
Guido van Rossum [Thu, 11 Mar 1999 16:51:23 +0000 (16:51 +0000)]
This file was never supposed to be part of IDLE.

25 years ago- Don't crash in the case where a superclass is a string instead of a
Guido van Rossum [Thu, 11 Mar 1999 16:37:13 +0000 (16:37 +0000)]
- Don't crash in the case where a superclass is a string instead of a
pyclbr.Class object; this can happen when the superclass is
unrecognizable (to pyclbr), e.g. when module renaming is used.

- Show a watch cursor when calling pyclbr (since it may take a while
recursively parsing imported modules!).

25 years agoAdded .rdf and .xsl as application/xml types. (.rdf is for the
Fred Drake [Thu, 11 Mar 1999 16:04:04 +0000 (16:04 +0000)]
Added .rdf and .xsl as application/xml types.  (.rdf is for the
Resource Description Framework, a metadata encoding, and .xsl is for
the Extensible Stylesheet Language.)

25 years agoTest for popen2 module, by Chris Tismer.
Guido van Rossum [Thu, 11 Mar 1999 13:26:23 +0000 (13:26 +0000)]
Test for popen2 module, by Chris Tismer.

25 years agoAlas, Vladimir's patch caused a bus error (probably double
Guido van Rossum [Thu, 11 Mar 1999 01:47:00 +0000 (01:47 +0000)]
Alas, Vladimir's patch caused a bus error (probably double
alignment?), and I didn't test it.  Withdrawing it for now.

25 years agoPatch by Vladimir Marangoz to allow freeing of the allocated blocks of
Guido van Rossum [Wed, 10 Mar 1999 22:55:47 +0000 (22:55 +0000)]
Patch by Vladimir Marangoz to allow freeing of the allocated blocks of
floats on finalization.

25 years agoPatch by Vladimir Marangoz to allow freeing of the allocated blocks of
Guido van Rossum [Wed, 10 Mar 1999 22:55:24 +0000 (22:55 +0000)]
Patch by Vladimir Marangoz to allow freeing of the allocated blocks of
integers on finalization.

25 years agoLots of nits to respond to various comments from users.
Fred Drake [Wed, 10 Mar 1999 17:25:30 +0000 (17:25 +0000)]
Lots of nits to respond to various comments from users.

25 years agoAdded some clarification on CWGUSI building and pathnames as they come
Jack Jansen [Wed, 10 Mar 1999 15:51:56 +0000 (15:51 +0000)]
Added some clarification on CWGUSI building and pathnames as they come
out of the CVS repository.

25 years agoAdd PathBrowser to File module
Guido van Rossum [Wed, 10 Mar 1999 05:18:02 +0000 (05:18 +0000)]
Add PathBrowser to File module

25 years ago"Path browser" - 4 scrolled lists displaying:
Guido van Rossum [Wed, 10 Mar 1999 05:17:28 +0000 (05:17 +0000)]
"Path browser" - 4 scrolled lists displaying:
    directories on sys.path
    modules in selected directory
    classes in selected module
    methods of selected class

Sinlge clicking in a directory, module or class item updates the next
column with info about the selected item.  Double clicking in a
module, class or method item opens the file (and selects the clicked
item if it is a class or method).

I guess eventually I should be using a tree widget for this, but the
ones I've seen don't work well enough, so for now I use the old
Smalltalk or NeXT style multi-column hierarchical browser.

25 years agoNew utility: multiple scrolled lists in parallel
Guido van Rossum [Wed, 10 Mar 1999 05:13:29 +0000 (05:13 +0000)]
New utility: multiple scrolled lists in parallel

25 years ago- White background.
Guido van Rossum [Wed, 10 Mar 1999 05:10:49 +0000 (05:10 +0000)]
- White background.
- Display "(None)" (or text of your choosing) when empty.
- Don't set the focus.

25 years agoopen_http also had the 'data is None' test backwards. don't call with the
Guido van Rossum [Tue, 9 Mar 1999 19:31:21 +0000 (19:31 +0000)]
open_http also had the 'data is None' test backwards.  don't call with the
extra argument if data is None.

25 years agoFix a number of typos and small grammatical nits pointed out by Detlef
Fred Drake [Tue, 9 Mar 1999 18:36:55 +0000 (18:36 +0000)]
Fix a number of typos and small grammatical nits pointed out by Detlef
Lannert <lannert@lannert.rz.uni-duesseldorf.de>.

Added a comment explaining the cast in the method table for the
keyword arguments sample code, in response to another comment by
Detlef.

25 years agoCall Py_SetProgramName() instead of redefining getprogramname(),
Guido van Rossum [Tue, 9 Mar 1999 17:07:24 +0000 (17:07 +0000)]
Call Py_SetProgramName() instead of redefining getprogramname(),
reflecting changes in the runtime around 1.5 or earlier.

25 years agoAlways test for an error return (usually NULL or -1) without setting
Guido van Rossum [Tue, 9 Mar 1999 16:16:45 +0000 (16:16 +0000)]
Always test for an error return (usually NULL or -1) without setting
an exception.

25 years agoPatch by Chris Herborth for BeOS code.
Guido van Rossum [Tue, 9 Mar 1999 16:07:23 +0000 (16:07 +0000)]
Patch by Chris Herborth for BeOS code.
He writes:

I had an off-by-1000 error in floatsleep(),
and the problem with time.clock() is that it's not implemented properly
on QNX... ANSI says it's supposed to return _CPU_ time used by the
process, but on QNX it returns the amount of real time used... so I was
confused.

25 years agoSmall change by Jack Jansen.
Guido van Rossum [Tue, 9 Mar 1999 16:05:26 +0000 (16:05 +0000)]
Small change by Jack Jansen.
Test for self.returntype behaving like OSErr rather than being it.

25 years agoAdded collapse_ws option.
Greg Ward [Mon, 8 Mar 1999 21:46:11 +0000 (21:46 +0000)]
Added collapse_ws option.

25 years agoOffscreen bitmap support, first stab. PixMaps are still treated as ordinary
Jack Jansen [Sun, 7 Mar 1999 23:11:21 +0000 (23:11 +0000)]
Offscreen bitmap support, first stab. PixMaps are still treated as ordinary
handles, not fullblown python objects, and UpdateGWorld returns a new GWorld
object in stead of modifying the existing one.

25 years agoAdded Qdoffs module.
Jack Jansen [Sun, 7 Mar 1999 23:10:32 +0000 (23:10 +0000)]
Added Qdoffs module.

25 years agoAdded a rewrite rule so the Str255 argument of GetControlTitle is seen as
Jack Jansen [Sun, 7 Mar 1999 20:05:20 +0000 (20:05 +0000)]
Added a rewrite rule so the Str255 argument of GetControlTitle is seen as
output parameter.

25 years agoAdded note about __builtin__._ to section dicussing classes of
Fred Drake [Fri, 5 Mar 1999 18:30:21 +0000 (18:30 +0000)]
Added note about __builtin__._ to section dicussing classes of
reserved names, just to avoid confusion on the part of users.

25 years agoAdded App module (appearance manager interface).
Jack Jansen [Thu, 4 Mar 1999 23:00:11 +0000 (23:00 +0000)]
Added App module (appearance manager interface).

25 years agoAdded App module (appearance manager interface). And of course codewarrior
Jack Jansen [Thu, 4 Mar 1999 22:56:46 +0000 (22:56 +0000)]
Added App module (appearance manager interface). And of course codewarrior
has touched various other projects again too, sigh.

25 years agoInterface to the appearance manager.
Jack Jansen [Thu, 4 Mar 1999 22:54:29 +0000 (22:54 +0000)]
Interface to the appearance manager.

25 years agoRe-generated with OSStatus treated like OSErr (i.e. not returned, but raising
Jack Jansen [Thu, 4 Mar 1999 22:53:24 +0000 (22:53 +0000)]
Re-generated with OSStatus treated like OSErr (i.e. not returned, but raising
an exception when negative).

25 years agoOops, missed a couple of substitutions in the templates.
Fred Drake [Thu, 4 Mar 1999 21:33:55 +0000 (21:33 +0000)]
Oops, missed a couple of substitutions in the templates.

25 years agoPass in the 'Send comments to ...' on the mkmodindex command line,
Fred Drake [Thu, 4 Mar 1999 21:25:05 +0000 (21:25 +0000)]
Pass in the 'Send comments to ...' on the mkmodindex command line,
just like we do for mkhowto.

25 years agoAllow many more aspects of the generated page to be parameterized, and
Fred Drake [Thu, 4 Mar 1999 21:19:57 +0000 (21:19 +0000)]
Allow many more aspects of the generated page to be parameterized, and
add a useful usage message.  Use 'mkmodindex --help' to display it.

25 years agoAdded "Internet Config" to index.
Fred Drake [Thu, 4 Mar 1999 19:00:26 +0000 (19:00 +0000)]
Added "Internet Config" to index.

25 years agoadd_module_idx(): If \ignorePlatformAnnotation is used, only ignore
Fred Drake [Thu, 4 Mar 1999 18:41:17 +0000 (18:41 +0000)]
add_module_idx():  If \ignorePlatformAnnotation is used, only ignore
   the specified annotation, not any annotation.

25 years agoFixed description of WSTOPSIG(), added WTERMSIG(). Problem reported
Fred Drake [Thu, 4 Mar 1999 14:08:10 +0000 (14:08 +0000)]
Fixed description of WSTOPSIG(), added WTERMSIG().  Problem reported
by Jonathan Giddy <jon@dgs.monash.edu.au>.

25 years agoadded hasclosebox attr (jstrout) -- jvr
Just van Rossum [Wed, 3 Mar 1999 23:15:39 +0000 (23:15 +0000)]
added hasclosebox attr (jstrout) -- jvr

25 years agoRecord the value of $TEXINPUTS in the transcript.
Fred Drake [Wed, 3 Mar 1999 21:57:58 +0000 (21:57 +0000)]
Record the value of $TEXINPUTS in the transcript.

Job.message():  New method.  Takes care of writing a message to the
user and adding it to the transcript.

25 years agoOops, missed version number for pdfTeX. Updated.
Fred Drake [Wed, 3 Mar 1999 21:44:10 +0000 (21:44 +0000)]
Oops, missed version number for pdfTeX.  Updated.

25 years agoLots of small updates.
Fred Drake [Wed, 3 Mar 1999 21:39:19 +0000 (21:39 +0000)]
Lots of small updates.

25 years agoObsolete; use the Python version instead.
Fred Drake [Wed, 3 Mar 1999 20:28:17 +0000 (20:28 +0000)]
Obsolete; use the Python version instead.

25 years agoSwitch to the Python version of mkhowto.
Fred Drake [Wed, 3 Mar 1999 20:27:10 +0000 (20:27 +0000)]
Switch to the Python version of mkhowto.

25 years agoRe-written mkhowto in Python; this should be at least a little more
Fred Drake [Wed, 3 Mar 1999 20:24:30 +0000 (20:24 +0000)]
Re-written mkhowto in Python; this should be at least a little more
portable.

Several things that had been done by running a python script are now a
matter of importing the right module and running a function with a few
parameters.

25 years agoprocess(): New function that contains the "orchestration" of the
Fred Drake [Wed, 3 Mar 1999 19:36:23 +0000 (19:36 +0000)]
process():  New function that contains the "orchestration" of the
    actual work.

main():  Just handle the command line and filename determination,
 calling process() to do the work.

These changes make this more import-friendly.

25 years agoprocess(): New function that contains the "orchestration" of the
Fred Drake [Wed, 3 Mar 1999 19:25:56 +0000 (19:25 +0000)]
process():  New function that contains the "orchestration" of the
    actual work.

main():  Just handle the command line and filename determination,
 calling process() to do the work.

These changes make this more import-friendly.

25 years agoBe a little more friendly for the generation of the text version: for
Fred Drake [Wed, 3 Mar 1999 16:21:34 +0000 (16:21 +0000)]
Be a little more friendly for the generation of the text version: for
"blank" navigation icons, use ALT="" instead of ALT="blank"; also add
ALIGN=CENTER for the table, to get a slightly better affect in the
text (the table is full-width, so this doesn't change the appearance
when browsing the HTML).

25 years ago"\platform{UNIX}" should really be spelled "\platform{Unix}".
Fred Drake [Tue, 2 Mar 1999 17:03:42 +0000 (17:03 +0000)]
"\platform{UNIX}" should really be spelled "\platform{Unix}".

25 years agoAdded \platform annotations.
Fred Drake [Tue, 2 Mar 1999 16:37:17 +0000 (16:37 +0000)]
Added \platform annotations.

25 years agoAdd information about adding the portability statement.
Fred Drake [Tue, 2 Mar 1999 16:24:22 +0000 (16:24 +0000)]
Add information about adding the portability statement.

25 years agoBe more flexible to support platform annotations.
Fred Drake [Tue, 2 Mar 1999 16:22:56 +0000 (16:22 +0000)]
Be more flexible to support platform annotations.

25 years agoClean up *.pla files -- platform annotation information.
Fred Drake [Tue, 2 Mar 1999 16:22:26 +0000 (16:22 +0000)]
Clean up *.pla files -- platform annotation information.

25 years agoIgnore *.pla -- the platform annotation information. Also, remove it for
Fred Drake [Tue, 2 Mar 1999 16:20:42 +0000 (16:20 +0000)]
Ignore *.pla -- the platform annotation information.  Also, remove it for
'make clean'.

25 years agoIgnore *.pla -- the platform annotation information.
Fred Drake [Tue, 2 Mar 1999 16:19:37 +0000 (16:19 +0000)]
Ignore *.pla -- the platform annotation information.

25 years agoAdded support for \platform, \platformof, and \ignorePlatformAnnotation.
Fred Drake [Tue, 2 Mar 1999 16:17:44 +0000 (16:17 +0000)]
Added support for \platform, \platformof, and \ignorePlatformAnnotation.

25 years agoswallow_newline(): Removed function; not really needed. Modified all call
Fred Drake [Tue, 2 Mar 1999 16:05:35 +0000 (16:05 +0000)]
swallow_newline():  Removed function; not really needed.  Modified all call
    sites.

do_cmd_ignorePlatformAnnotation(),
do_cmd_platform(),
do_cmd_platformof():  New functions to support platform dependency
      information.

process_all_platformofs():  New function to post-process \platformof macros
using information collected during the initial pass.

process_python_state():  New function. Call all post-processing functions
defined in this file to avoid having to have too much knowledge of
the internals for this stuff in l2hinit.perl.

25 years agoImprove handling of module index, to deal with platform annotations a little
Fred Drake [Tue, 2 Mar 1999 16:00:37 +0000 (16:00 +0000)]
Improve handling of module index, to deal with platform annotations a little
better.

25 years agoChanges to accomodate the global module index and platform annotations.
Fred Drake [Tue, 2 Mar 1999 15:58:20 +0000 (15:58 +0000)]
Changes to accomodate the global module index and platform annotations.

25 years agoOnly use 4 columns in the module index, to accomodate platform annotations.
Fred Drake [Tue, 2 Mar 1999 15:56:19 +0000 (15:56 +0000)]
Only use 4 columns in the module index, to accomodate platform annotations.

25 years agoadded "Save options" menu to popup so users can set the creator of scripts -- jvr
Just van Rossum [Sat, 27 Feb 1999 17:18:30 +0000 (17:18 +0000)]
added "Save options" menu to popup so users can set the creator of scripts -- jvr

25 years agochanged creator to 'Pide' -- jvr
Just van Rossum [Sat, 27 Feb 1999 17:16:54 +0000 (17:16 +0000)]
changed creator to 'Pide' -- jvr