Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use K&R function prototypes. | Guido van Rossum | 1997-10-07 | 1 | -7/+12 |
| | |||||
* | The sequence behavior is now on the Exception root class rather than | Guido van Rossum | 1997-10-07 | 2 | -6/+8 |
| | | | | on the StandardError class. | ||||
* | Added pointer to api.tex and note about the out-of-date-ness of this | Guido van Rossum | 1997-10-07 | 2 | -0/+14 |
| | | | | document. | ||||
* | Set Oct 10 as the release date. | Guido van Rossum | 1997-10-07 | 2 | -2/+2 |
| | |||||
* | Change title to {Python/C API Reference Manual}; remove \bcode \ecode | Guido van Rossum | 1997-10-07 | 2 | -22/+22 |
| | | | | which appears to be out of fashion in this file. | ||||
* | Typo discovered by Case Roole. | Guido van Rossum | 1997-10-07 | 1 | -1/+1 |
| | |||||
* | Be more careful with closing fd's 0,1,2. | Guido van Rossum | 1997-10-07 | 1 | -3/+5 |
| | |||||
* | Add note about condition.py. | Guido van Rossum | 1997-10-07 | 1 | -0/+1 |
| | |||||
* | Completed the changes between 1.5a3 and now. Not yet sorted though. | Guido van Rossum | 1997-10-07 | 1 | -9/+273 |
| | |||||
* | And "ni" has been documented... | Fred Drake | 1997-10-06 | 2 | -4/+0 |
| | |||||
* | Oops; don't know if this was my typo or not: There was a "p" on a line that | Fred Drake | 1997-10-06 | 2 | -2/+2 |
| | | | | should have been blank. | ||||
* | Updated the section "Parsing Python". | Fred Drake | 1997-10-06 | 2 | -24/+2 |
| | |||||
* | Added keyword module entry. | Fred Drake | 1997-10-06 | 2 | -0/+2 |
| | |||||
* | Minor nits (Lib/token.py is a file, token is a module...). | Fred Drake | 1997-10-06 | 2 | -4/+104 |
| | | | | Added docs for symbol and token modules at the end. | ||||
* | Documentation for the keyword module. | Fred Drake | 1997-10-06 | 2 | -0/+18 |
| | |||||
* | Reduced number of temporary names used at module scope. Use underscores in | Fred Drake | 1997-10-06 | 1 | -5/+4 |
| | | | | front of temporary names in the module namespace. | ||||
* | Move the pprint docs after the code docs, so that all parser/codegen type | Fred Drake | 1997-10-06 | 2 | -2/+2 |
| | | | | things come together. | ||||
* | Fix comment to add the all-important trailing colon to the example. | Guido van Rossum | 1997-10-06 | 1 | -9/+16 |
| | | | | Print the author with the revision date and filename. | ||||
* | Reduced number of temporary names used at module scope. Use underscores in | Fred Drake | 1997-10-06 | 1 | -5/+3 |
| | | | | front of temporary names in the module namespace. | ||||
* | Done with adding changes from 1.4 till 1.5a3. | Guido van Rossum | 1997-10-06 | 1 | -76/+321 |
| | |||||
* | Don't do weird things with the "import parser"; just do it. Sheesh... | Fred Drake | 1997-10-06 | 1 | -11/+11 |
| | |||||
* | The usual (and some new modules). | Guido van Rossum | 1997-10-06 | 17 | -285/+1011 |
| | |||||
* | A variant on webchecker that creates a mirror copy of a remote site. | Guido van Rossum | 1997-10-06 | 1 | -0/+131 |
| | |||||
* | Several changes: | Guido van Rossum | 1997-10-06 | 1 | -6/+24 |
| | | | | | | | | | | - Change the code that looks for robots.txt to always look in /, even if the "root" path is somewhere deep down below. - Add link processing in <AREA> tags. - Change safeclose() to avoid crashing when the file has no geturl() method. | ||||
* | Document the mapping object's new get() method. | Barry Warsaw | 1997-10-06 | 2 | -0/+10 |
| | |||||
* | UserDict.get(): New method to mirror built-in dictionaries' get() | Barry Warsaw | 1997-10-06 | 1 | -0/+5 |
| | | | | method. | ||||
* | dict_get(): New method for item access with different semantics than | Barry Warsaw | 1997-10-06 | 1 | -0/+38 |
| | | | | | | | | | __getitem__(). This method never raises an exception; if the key is not in the dictionary, the second (optional) argument is returned. If the second argument is not provided and the key is missing, None is returned. mapp_methods: added "get" method. | ||||
* | Move the __getitem__() definition from StandardException to Exception. | Fred Drake | 1997-10-06 | 1 | -1/+3 |
| | | | | | | | | | This allows stuff like this out of the box: try: ... except socket.error, (code, msg): ... | ||||
* | New "re" regular expression support. | Guido van Rossum | 1997-10-06 | 2 | -1145/+1575 |
| | | | | | | The new re module was written by Andrew Kuchling and uses the pcre code in ../Modules/. The old re module has been renamed to re1, just in case you need it for comparison. | ||||
* | New "re" regular expression support. | Guido van Rossum | 1997-10-06 | 4 | -0/+5135 |
| | | | | | This code is written by Philip Hazel and Andrew Kuchling. It requires a new "re.py" module, too. | ||||
* | Add the four latex2html output directories: api, ext, lib, tut. | Fred Drake | 1997-10-06 | 1 | -0/+4 |
| | |||||
* | Done with tread state descriptions. Sigh! | Guido van Rossum | 1997-10-06 | 2 | -100/+618 |
| | |||||
* | Oops -- needed to fix another place affected by the change back to | Guido van Rossum | 1997-10-06 | 1 | -7/+8 |
| | | | | | $(MACHDEP) being just the platform name, without "plat-" prefix... (To be precise, the libainstall target was totally broken.) | ||||
* | Added strerror() | Guido van Rossum | 1997-10-05 | 2 | -0/+8 |
| | |||||
* | Removed emacs.py | Guido van Rossum | 1997-10-05 | 2 | -4/+0 |
| | |||||
* | Fixed some stuff that was incorrectly copied from regex. | Guido van Rossum | 1997-10-05 | 2 | -20/+22 |
| | |||||
* | Documented __import__, callable, isinstance, issubclass, | Guido van Rossum | 1997-10-05 | 2 | -10/+166 |
| | | | | and slice. | ||||
* | Documented new exceptions and exception classes. | Guido van Rossum | 1997-10-05 | 2 | -40/+234 |
| | |||||
* | Add -N0 to dvips flags to generate page structure comments. | Guido van Rossum | 1997-10-05 | 1 | -1/+1 |
| | |||||
* | Checkpoint. Added docs for the new exception handling APIs and for | Guido van Rossum | 1997-10-05 | 2 | -70/+506 |
| | | | | the interfaces defined in import.h. | ||||
* | The directory containing config.h has changed. | Guido van Rossum | 1997-10-05 | 1 | -1/+2 |
| | |||||
* | Turns out whatsound.py and sndhdr.py were identical modules. | Guido van Rossum | 1997-10-04 | 2 | -540/+2 |
| | | | | | | Since there's also an imghdr.py file, I propose to make sndhdr.py the official one. For compatibility, whatsound.py imports * from sndhdr.py. | ||||
* | install: New target that installs shared modules in | Fred Drake | 1997-10-04 | 1 | -0/+17 |
| | | | | $exec_prefix/lib/python$VERSION/site-packages by default. | ||||
* | Install install-sh with the other config files. | Guido van Rossum | 1997-10-04 | 1 | -0/+1 |
| | | | | Could be useful for an install target in Misc/Makefile.pre.in. | ||||
* | New version of PyErr_NewException() that is compatible with -X option. | Guido van Rossum | 1997-10-03 | 1 | -14/+35 |
| | |||||
* | Initialize Py_UseClassExceptionsFlag to 1. | Guido van Rossum | 1997-10-03 | 1 | -1/+1 |
| | |||||
* | Remove unreachable "return 1" at end of ensure_fromlist(). | Guido van Rossum | 1997-10-03 | 1 | -1/+1 |
| | |||||
* | Fix small omission: with all the new code, sys.exit(None) would print | Guido van Rossum | 1997-10-03 | 1 | -0/+2 |
| | | | | "None"; this should be equivalent to sys.exit(0). | ||||
* | Argh; do the same for the "Release" version of the config. | Fred Drake | 1997-10-02 | 1 | -1/+1 |
| | |||||
* | Fix up include directories for compiling the resources. | Fred Drake | 1997-10-02 | 1 | -1/+1 |
| |