summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Document -x too.Guido van Rossum1998-04-101-0/+8
|
* Translate E_INDENT to the clearest error message I can think of.Guido van Rossum1998-04-101-0/+3
|
* Add -t option to set the Py_TabcheckFlag flag.Guido van Rossum1998-04-101-5/+10
|
* Document -t flag.Guido van Rossum1998-04-101-1/+9
|
* Declare and use Py_TabcheckFlag here.Guido van Rossum1998-04-101-0/+8
|
* Add dummy Py_VerboseFlag now that it's referenced in parsetok.c.Guido van Rossum1998-04-101-0/+1
|
* Jeff EplerGuido van Rossum1998-04-101-0/+1
|
* Catch exceptions in final self.destroy() call.Guido van Rossum1998-04-101-2/+5
|
* We no longer check for libsun.a.Guido van Rossum1998-04-101-3/+0
|
* Add image_types() and image_names() as methods to Misc class.Guido van Rossum1998-04-101-0/+8
|
* tabnanny stuffGuido van Rossum1998-04-104-507/+508
|
* Tim's version 4, with my modsGuido van Rossum1998-04-103-42/+18
|
* Set the patch level to 1.5.1. (I'm not going to release this as aGuido van Rossum1998-04-101-1/+1
| | | | | beta -- if there are bugs, I'll post a patch page and release 1.5.2 sooner.)
* Added Tabcheck flag.Guido van Rossum1998-04-101-0/+1
|
* Added Frozen and Tabcheck flags.Guido van Rossum1998-04-101-0/+2
|
* Another easter present.Guido van Rossum1998-04-101-0/+321
|
* (py-toggle-shells): Added a message in the minibuf.Barry Warsaw1998-04-101-0/+1
|
* Support raise with no parameters.Fred Drake1998-04-101-3/+4
|
* Quick and extremely dirty hacks to toggle between using CPython andBarry Warsaw1998-04-091-1/+59
| | | | | | | | | | | | | | | JPython interpreters. This implementation may suck. (py-jpython-command, py-jpython-command-args): New variables. (py-mode-map): py-toggle-shells bound to C-c C-t (py-toggle-shells): Command to toggle between using CPython (the default) and JPython. This is buffer local, and notice the mode-name change. (py-shell): Use either CPython or JPython. Note that py-execute-* still needs to be modified.
* New Java-style threading module. The doc strings are in a separate module.Guido van Rossum1998-04-092-0/+1276
|
* The usualGuido van Rossum1998-04-092-1/+8
|
* remove C++ entries of the form Class::methodGuido van Rossum1998-04-091-2/+6
|
* Make first raise argument optionalGuido van Rossum1998-04-094-9/+26
|
* Add checking for inconsistent tab usageGuido van Rossum1998-04-092-3/+49
|
* Add E_INDENT -- new error to check for bad indentationGuido van Rossum1998-04-091-0/+1
|
* Tons of new names...Guido van Rossum1998-04-091-0/+23
|
* Threading speedup patches by Christopher Lindblad <cjl@infoseek.com>.Guido van Rossum1998-04-092-24/+192
|
* Another new utility: getpass() prompts for a password, with echo off.Guido van Rossum1998-04-091-0/+79
| | | | | Also contains getuser(), which returns the username (not prompting though). These work on Unix and Windows!
* Add $(LIBS) to the pgen link line.Guido van Rossum1998-04-091-1/+2
|
* Added smtplib.py (thanks, Guido!).Fred Drake1998-04-092-0/+6
|
* Don't use \samp when \code is better.Fred Drake1998-04-092-26/+26
| | | | | | | Consistently use ' instead of ": this conforms to my unofficial stance that constants should be presented using the repr() whenever it makes sense. This isn't because I think repr() is the greatest thing since spam, just that it's an easy to adopt consistency standard. (It also holds no new surprises!)
* do_cmd_lineii(),Fred Drake1998-04-091-6/+6
| | | | | do_cmd_lineiii(): Fix markup style conversion to HTML tags for first column. (The endtag wasn't formed properly.)
* Add not_ and __not__.Guido van Rossum1998-04-091-0/+2
|
* Add PyObject_Not().Guido van Rossum1998-04-093-0/+27
|
* Remove @webchecker.pickle in the "clean" target.Fred Drake1998-04-091-1/+1
|
* Work around a small (& annoying) limitation of the latex2html support forFred Drake1998-04-092-10/+8
| | | | | \seemodule. This is far easier than figuring out the real problem, but it works.
* Removed misleading comment about GNU software. This module and the zlibFred Drake1998-04-092-6/+4
| | | | | library have no relationship with GNU software other than implementing some of the same algorithms and file format. (The zlib module is more general.)
* Added note about current status of info generation.Fred Drake1998-04-091-0/+9
|
* Many markup changes (to \regexp, mostly)Andrew M. Kuchling1998-04-092-208/+238
| | | | | Clarified text on 8-bit cleanness, complemented sets like [^5], and {m,n} qualifier.
* Update release number and date.Fred Drake1998-04-092-4/+4
|
* Don't assume that \version expands to the 3-character major.minor number; itFred Drake1998-04-092-2/+32
| | | | | | | is the full release version name ("1.5.1beta1", for instance). Add section for previously documented obsolete modules. Includes ni, rand, and soundex.
* When getcwd() doesn't exist or raises an exception, don't fail butGuido van Rossum1998-04-091-1/+5
| | | | | fall back to using os.curdir instead; if it is fine, don't use os.curdir at all.
* Clarify that put *blocks* when the queue is full. Add some blankGuido van Rossum1998-04-091-1/+6
| | | | lines to doc strings.
* Comment out the soundex section.Fred Drake1998-04-092-2/+2
|
* Piers' new version (but I unfolded a few doc strings).Guido van Rossum1998-04-091-13/+11
|
* Don't assume that \version expands to the 3-character major.minor number; itFred Drake1998-04-096-10/+14
| | | | is the full release version name ("1.5.1beta1", for instance).
* Use the correct URL to AMK's regex-to-re HOWTO!Fred Drake1998-04-092-4/+6
|
* Updated URL to AMK's regex-to-re HOWTO.Fred Drake1998-04-092-6/+8
|
* Added reference to AMK's HOWTO on the topic.Fred Drake1998-04-092-0/+10
|
* Added imaplib.Fred Drake1998-04-092-0/+6
|