summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added \platform annotations.Fred Drake1999-03-0238-238/+293
|
* Add information about adding the portability statement.Fred Drake1999-03-021-1/+10
|
* Be more flexible to support platform annotations.Fred Drake1999-03-021-5/+25
|
* Clean up *.pla files -- platform annotation information.Fred Drake1999-03-021-1/+1
|
* Ignore *.pla -- the platform annotation information. Also, remove it forFred Drake1999-03-022-2/+2
| | | | 'make clean'.
* Ignore *.pla -- the platform annotation information.Fred Drake1999-03-021-1/+1
|
* Added support for \platform, \platformof, and \ignorePlatformAnnotation.Fred Drake1999-03-021-10/+47
|
* swallow_newline(): Removed function; not really needed. Modified all callFred Drake1999-03-021-16/+47
| | | | | | | | | | | | | | | | 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.
* Improve handling of module index, to deal with platform annotations a littleFred Drake1999-03-021-7/+43
| | | | better.
* Changes to accomodate the global module index and platform annotations.Fred Drake1999-03-022-0/+13
|
* Only use 4 columns in the module index, to accomodate platform annotations.Fred Drake1999-03-021-1/+1
|
* added "Save options" menu to popup so users can set the creator of scripts ↵Just van Rossum1999-02-271-0/+56
| | | | -- jvr
* changed creator to 'Pide' -- jvrJust van Rossum1999-02-271-1/+1
|
* added kludge so edit menus work in W.ModalDialogs -- jvrJust van Rossum1999-02-271-1/+1
|
* updated 'vers' resource -- jvrJust van Rossum1999-02-271-0/+0
|
* reverted Jack's mod: no longer neccesary since all BNDL & icon info is in ↵Just van Rossum1999-02-271-13/+0
| | | | the IDE's resource file, just like the other applets -- jvr
* added Jack's ad-hoc icon plus a BNDL resource, so the creator of the IDE ↵Just van Rossum1999-02-271-0/+0
| | | | will be 'Pide' -- jvr
* Set the signature for the IDE "by hand", the bundle is already included in theJack Jansen1999-02-271-0/+13
| | | | PythonEngine applet template.
* Moved all three bundles (for interpreter, applets and IDE) into bundle.rsrc.Jack Jansen1999-02-272-0/+0
|
* added "dummy" makeopenwindowsmenu method to simplify making a standalone W ↵Just van Rossum1999-02-261-0/+7
| | | | app -- jvr
* open res file(s) read only; upped __version__ -- jvrJust van Rossum1999-02-261-4/+4
|
* extract_tb(): Only describe this function once. Problem reported byFred Drake1999-02-261-23/+12
| | | | Jonathan Giddy <jon@dgs.monash.edu.au>.
* Typo: "Availabilty" --> "Availability"Fred Drake1999-02-261-1/+1
| | | | Thanks to /F!
* added slight delay in Scrollbar.click() for more intuitive response -- jvrJust van Rossum1999-02-251-0/+2
|
* fixed "crashing" bug when scripts folder as stored in prefs file does not exist.Just van Rossum1999-02-251-1/+1
|
* Uncommented AskYesNoCancel docstring (how did it get commented in the first ↵Jack Jansen1999-02-251-11/+11
| | | | place?)
* http_error had the 'data is None' test backwards. don't call with theJeremy Hylton1999-02-251-4/+3
| | | | extra argument if data is None.
* change indentation from 8 spaces to 4 spacesJeremy Hylton1999-02-251-878/+859
|
* pleasing the tabnannyJeremy Hylton1999-02-251-11/+11
|
* Oops, one more "x, y, z" to convert...Fred Drake1999-02-251-1/+1
|
* Adjusted comment at the top to be less confusing, following FredrikFred Drake1999-02-251-14/+16
| | | | | | Lundh's example. Converted comment to docstring.
* Added note about comments, from Christopher Petrilli.Fred Drake1999-02-241-1/+3
|
* Update some of the top comments and shorten title of the firstFred Drake1999-02-241-3/+6
| | | | section.
* Moved whatsound to lib-old/, since it was declared obsolete and is documentedFred Drake1999-02-241-1/+0
| | | | as such.
* Use sndhdr instead of the obsolete whatsound module.Fred Drake1999-02-241-2/+2
|
* When performing a POST request, i.e. when the second argument toJeremy Hylton1999-02-241-11/+27
| | | | | | | urlopen is used to specify form data, make sure the second argument is threaded through all of the http_error_NNN calls. This allows error handlers like the redirect and authorization handlers to properly re-start the connection.
* ignore_from_idx(): Fixed bug in regular expression.Fred Drake1999-02-241-3/+3
|
* Add target for modindex.html; a combined lib+mac module index. AlsoFred Drake1999-02-241-1/+5
| | | | built with target "all".
* Script to combine module index files. Given a list of files that lookFred Drake1999-02-241-0/+136
| | | | | like modindex.html, create a combined modindex.html file that lists all the modules. Takes the same parameters as buildindex.py.
* Ignore a file called modindex.html.Fred Drake1999-02-241-0/+1
|
* process_nodes(): New function.Fred Drake1999-02-241-6/+10
| | | | | main(): Moved the node processing between input and ouptut to process_nodes().
* Patch by Lars Wirzenius:Guido van Rossum1999-02-241-3/+7
| | | | | | | | | | | | | | | | o the initial comment is wrong: creating messages is already implemented o Message.getbodytext: if the mail or it's part contains an empty content-transfer-encoding header, the code used to break; the change below treats an empty encoding value the same as the other types that do not need decoding o SubMessage.getbodytext was missing the decode argument; the change below adds it; I also made it unconditionally return the raw text if decoding was not desired, because my own routines needed that (and it was easier than rewriting my own routines ;-)
* (initerrors): Make sure that the exception tuples ("base-classes" whenBarry Warsaw1999-02-241-8/+18
| | | | | string-based exceptions are used) reflect the real class hierarchy, i.e. that SystemExit derives from Exception not StandardError.
* Document the correct class hierarchy for SystemExit. It is not anBarry Warsaw1999-02-241-5/+6
| | | | | error and so it derives from Exception and not SystemError. The docstring was incorrect but the implementation was fine.
* Document the correct class hierarchy for SystemExit. It is not anBarry Warsaw1999-02-241-4/+8
| | | | error and so it derives from Exception and not SystemError.
* Add import sys, needed by reference to sys.exc_info() in rmtree().Guido van Rossum1999-02-231-0/+1
| | | | Discovered by Mitch Chapman.
* Script to help identify undocumented modules. Use -h or --help forFred Drake1999-02-231-0/+159
| | | | usage information.
* Dictionaries are created using the "{...}" notation, not the "..."Fred Drake1999-02-231-13/+11
| | | | notation. Problem reported by Magnus L. Hetland <mlh@idt.ntnu.no>.
* # Typo in docstring (Retrun -> Return).Guido van Rossum1999-02-231-1/+1
|
* # the usualGuido van Rossum1999-02-231-182/+135
|