summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* added 'org.python.core' to the maymiss list (pickly.py tries to import it, ↵Just van Rossum1999-04-241-1/+2
| | | | probably for JPython support) -- jvr
* removed two redundant lines -- jvrJust van Rossum1999-04-241-2/+0
|
* mhlib is now documented.Fred Drake1999-04-231-3/+0
|
* Markup consistency.Fred Drake1999-04-231-4/+4
|
* Nits.Fred Drake1999-04-231-2/+2
|
* Add section for the sha module.Fred Drake1999-04-232-0/+57
|
* Apparently __GNU_LIBRARY__ is defined for glibc as well as for libc5.Guido van Rossum1999-04-231-3/+3
| | | | | | | The test really wanted to distinguish between the two. So now we test for __GLIBC__ instead. I have confirmed that this works for glibc and I have an email from Christian Tanzer confirming that it works for libc5, so it should be fine.
* Patch from Greg Ward adding descriptions of S_IMODE() and S_IFMT(),Fred Drake1999-04-231-9/+33
| | | | | and an explanation of why any of stat.S_*() would be used instead of os.path.is*(). (With some really small enhancements by me.)
* Fixed typo and font-control problem reported by Detlef LannertFred Drake1999-04-231-2/+2
| | | | <lannert@lannert.rz.uni-duesseldorf.de>.
* Clarifications on the first(), next(), and previous() functions, basedFred Drake1999-04-231-4/+5
| | | | on comments from Detlef Lannert <lannert@lannert.rz.uni-duesseldorf.de>.
* Fix a grammatical error reported by Detlef LannertFred Drake1999-04-231-1/+1
| | | | <lannert@lannert.rz.uni-duesseldorf.de>.
* Fix a couple of typos reported by Detlef LannertFred Drake1999-04-231-2/+2
| | | | <lannert@lannert.rz.uni-duesseldorf.de>.
* Fix a couple of grammatical errors reported by Detlef LannertFred Drake1999-04-231-2/+2
| | | | <lannert@lannert.rz.uni-duesseldorf.de>.
* Work-around LaTeX2HTML space-dropping bug.Fred Drake1999-04-231-2/+1
|
* Fixed some logical markup nits.Fred Drake1999-04-231-21/+26
| | | | | Added a pointer to Grail in the see-also section, since it's used as an example.
* Logical markup.Fred Drake1999-04-231-3/+3
|
* No, __repr__() does not accept a parameter other than self.Fred Drake1999-04-231-1/+2
|
* Shorten the section title.Fred Drake1999-04-231-13/+13
| | | | | Adjust markup to be a little more consistent with the rest of the document.
* Added /usr/lib/X11/rgb.txt in front of X/rgb.txt for LinuxersBarry Warsaw1999-04-231-0/+2
|
* Shorten the section title.Fred Drake1999-04-231-1/+4
|
* Shorten the section title.Fred Drake1999-04-231-5/+5
| | | | Fix a couple of grammatical errors.
* Work around a space-dropping problem in LaTeX2HTML.Fred Drake1999-04-231-5/+4
| | | | Clarify the usage of a parameter.
* Added "See also" sections linking to binascii.Fred Drake1999-04-232-0/+12
|
* Refer to the binhex module, not the non-existent hexbin module.Fred Drake1999-04-231-2/+11
| | | | Added a "See also" section.
* Fix some glaring markup consistency problems (presentation wasFred Drake1999-04-231-4/+11
| | | | | | broken). Added a "See also" section.
* Added a couple more requests from users.Fred Drake1999-04-231-0/+9
|
* Hack places where '--' should appear as literal output but the -- wasFred Drake1999-04-231-7/+7
| | | | (properly) converted to - by LaTeX2HTML.
* Fix square brackets around optional parameters to macros.Fred Drake1999-04-231-2/+2
|
* General small improvements and fixes.Fred Drake1999-04-231-39/+47
|
* Provide full arguments to __import__ so it works in packagized IDLE.Guido van Rossum1999-04-231-1/+1
|
* Bunch of updates necessary due to recent changes; added docs for FileGuido van Rossum1999-04-221-13/+63
| | | | menu, command line and color preferences.
* Remove obsolete 'script' menu.Guido van Rossum1999-04-221-5/+0
|
* Several wishes fulfilled.Guido van Rossum1999-04-221-22/+5
|
* Moved classes OnDemandOutputWindow and PseudoFile here,Guido van Rossum1999-04-221-0/+44
| | | | from ScriptBinding.py where they are no longer needed.
* Mostly rewritten. Instead of the old Run module and Debug module,Guido van Rossum1999-04-221-107/+46
| | | | | | | | | | | there are two new commands: Import module (F5) imports or reloads the module and also adds its name to the __main__ namespace. This gets executed in the PyShell window under control of its debug settings. Run script (Control-F5) is similar but executes the contents of the file directly in the __main__ namespace.
* - made "Save options..." dialog more generic, so it's also usable from RoboFogJust van Rossum1999-04-221-4/+5
| | | | | - mark file as dirty after changing the creator of the file so we can_save... -- jvr
* fixed glitch when scrolling very long files -- jvrJust van Rossum1999-04-221-1/+1
|
* Make internal module references hyperlinks wherever it makes sense.Fred Drake1999-04-2221-100/+103
|
* Remove bogus characters in code sample.Fred Drake1999-04-221-2/+2
|
* Nits: document use of $IDLESTARTUP; display idle versionGuido van Rossum1999-04-221-3/+5
|
* Work around LaTeX2HTML comment-handling bug.Fred Drake1999-04-221-2/+2
|
* Shorten the section title.Fred Drake1999-04-221-6/+5
|
* New version to celebrate new command lineGuido van Rossum1999-04-221-1/+1
|
* Added flush(), for completeness.Guido van Rossum1999-04-221-0/+3
|
* A lot of changes to make the command line more useful. You can now do:Guido van Rossum1999-04-221-26/+115
| | | | | | | | | | | | | | | | | | idle.py -e file ... -- to edit files idle.py script arg ... -- to run a script idle.py -c cmd arg ... -- to run a command Other options, see also the usage message (also new!) for more details: -d -- enable debugger -s -- run $IDLESTARTUP or $PYTHONSTARTUP -t title -- set Python Shell window's title sys.argv is set accordingly, unless -e is used. sys.path is absolutized, and all relevant paths are inserted into it. Other changes: - the environment in which commands are executed is now the __main__ module - explicitly save sys.stdout etc., don't restore from sys.__stdout__ - new interpreter methods execsource(), execfile(), stuffsource() - a few small nits
* Add command line flags to just list the files that contain theFred Drake1999-04-221-2/+20
| | | | offending lines or to include line numbers in the output.
* Added a "See also" section with some external references.Fred Drake1999-04-221-0/+12
|
* Markup nits.Fred Drake1999-04-222-46/+45
| | | | Make module references hyperlinks.
* Clean up lots of mark up.Fred Drake1999-04-221-43/+40
|
* Added descriptions of the various exceptions, based on the docstrings.Fred Drake1999-04-221-24/+65
| | | | Various small cleanups.