Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rough and incomplete documentation on augmented assignment, which follows | Thomas Wouters | 2000-08-24 | 1 | -4/+7 |
| | | | | shortly. Markup also needs checking. | ||||
* | Adjust the way __getslice__() is marked as deprecated; this will also | Fred Drake | 2000-08-18 | 1 | -2/+4 |
| | | | | stand out more. | ||||
* | Apply SF patch #101029: call __getitem__ with a proper slice object if there | Thomas Wouters | 2000-08-17 | 1 | -9/+18 |
| | | | | | | | | is no __getslice__ available. Also does the same for C extension types. Includes rudimentary documentation (it could use a cross reference to the section on slice objects, I couldn't figure out how to do that) and a test suite for all Python __hooks__ I could think of, including the new behaviour. | ||||
* | More of Rob W. W. Hooft's spelling fixes. The only ones left now are the | Thomas Wouters | 2000-07-16 | 1 | -5/+5 |
| | | | | | | | | | | | distutils patches, which I'll leave to the distutils maintainers. Tip: review the patch like this: grep "^[\!+-] " <patchfile> To get a quick and easy way to review the actual changes. Most of the changes are single-line ones, anyway. | ||||
* | Improve the descriptions of expected exceptions for __getitem__(), | Fred Drake | 2000-07-13 | 1 | -4/+14 |
| | | | | | __setitem__(), and __delitem__(). Based on related comments from Barry Warsaw. | ||||
* | Revise the description of when functions retrieved from class instances | Fred Drake | 2000-06-28 | 1 | -9/+11 |
| | | | | | | | | | are and are not turned into bound methods; some confusion was noted by Andrew Dalke. In particular, it has to be noted that functions located on the class instance are not turned into any sort of method, only those which are found via the underlying class. | ||||
* | Fix markup error that hid a tilde character; reported long ago by | Fred Drake | 2000-06-15 | 1 | -1/+12 |
| | | | | Carl Feynman <carlf@abinitio.com>. | ||||
* | But don't do the funny \UNICODE macro; we're trying to get away from | Fred Drake | 2000-04-06 | 1 | -1/+1 |
| | | | | those markups! <with-mixed-feelings> | ||||
* | Patch from Marc-Andre Lemburg <mal@lemburg.com>: | Fred Drake | 2000-04-06 | 1 | -0/+15 |
| | | | | Added Unicode type to the language reference. | ||||
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -17/+18 |
| | |||||
* | Use \citetitle as appropriate. | Fred Drake | 1999-11-10 | 1 | -18/+15 |
| | |||||
* | Fixed some index entries. | Fred Drake | 1999-05-10 | 1 | -36/+36 |
| | | | | | | In the __coerce__ description, None should be returned if the conversion is *impossible*, not *possible*. Reported by Robert Kern <kernr@ncifcrf.gov>. | ||||
* | Dictionaries are created using the "{...}" notation, not the "..." | Fred Drake | 1999-02-23 | 1 | -13/+11 |
| | | | | notation. Problem reported by Magnus L. Hetland <mlh@idt.ntnu.no>. | ||||
* | 1. Clarify that immutability isn't entirely the same as unchangeable | Guido van Rossum | 1999-02-23 | 1 | -2/+12 |
| | | | | | | | value (because of immutable containers containing mutable objects). 2. Document that func_code, func_defaults and func_doc / __doc__ are now writable. | ||||
* | Documented __complex__(), made sure all the discipline names hit the | Fred Drake | 1999-02-12 | 1 | -5/+8 |
| | | | | index. | ||||
* | "numberic" --> "numeric", two places | Fred Drake | 1999-01-28 | 1 | -2/+2 |
| | |||||
* | Removed a lot of unnecessary comment markers which cause unexplained | Fred Drake | 1999-01-12 | 1 | -84/+83 |
| | | | | numbers to appear in the HTML version of the manual. | ||||
* | Remove two remaining {\tt ...} constructs. | Fred Drake | 1998-11-25 | 1 | -2/+2 |
| | |||||
* | Massive change to just about every construct that impacts the index. | Fred Drake | 1998-11-25 | 1 | -225/+210 |
| | | | | Blame it on Just. ;-) | ||||
* | Remove an unnecessary "%" character that seems to cause a minor glitch | Fred Drake | 1998-10-21 | 1 | -1/+1 |
| | | | | with the latest latex2html. | ||||
* | Fix some confusion in the __repr__() and __str__() descriptions. | Fred Drake | 1998-10-01 | 1 | -82/+85 |
| | | | | Reported by Lorenzo M. Catucci <lorenzo@argon.roma2.infn.it>. | ||||
* | Markup changes in the section on disciplines to match method descriptions | Fred Drake | 1998-08-28 | 1 | -165/+171 |
| | | | | | | a little better, and produce better HTML. Add some index entries. | ||||
* | Minor refilling of a paragraph... | Barry Warsaw | 1998-08-07 | 1 | -2/+2 |
| | |||||
* | im_function --> im_func | Fred Drake | 1998-08-07 | 1 | -2/+2 |
| | |||||
* | Make sure all chapters, sections, and subsections have a \label to give them | Fred Drake | 1998-07-28 | 1 | -10/+11 |
| | | | | semantic file names in the HTML. No more node#.html files! | ||||
* | e.g. -> e.g., | Guido van Rossum | 1998-07-24 | 1 | -2/+3 |
| | |||||
* | 'name space' -> 'namespace' | Guido van Rossum | 1998-07-23 | 1 | -8/+8 |
| | |||||
* | Lots of changes copied from the FrameMaker version. Also documented | Guido van Rossum | 1998-07-23 | 1 | -231/+625 |
| | | | | some previously undocumented features. | ||||
* | Updated markup style (got rid of \verb@...@, mostly). | Fred Drake | 1998-05-14 | 1 | -2/+2 |
| | |||||
* | The Python Reference Manual. | Fred Drake | 1998-05-06 | 1 | -0/+889 |
| | |||||
* | Removed LaTeX version of reference manual. Added ref/ref.ps. | Guido van Rossum | 1996-10-22 | 1 | -885/+0 |
| | |||||
* | Mention warning for exception in __del__. | Guido van Rossum | 1996-08-20 | 1 | -0/+2 |
| | |||||
* | Add warning about exceptions in __del__ being ignored. | Guido van Rossum | 1996-08-09 | 1 | -0/+4 |
| | |||||
* | Added __doc__ to predefined module attributes. | Guido van Rossum | 1996-06-26 | 1 | -3/+6 |
| | |||||
* | typos | Guido van Rossum | 1995-07-07 | 1 | -3/+3 |
| | |||||
* | added index entries for __*__ identifiers | Guido van Rossum | 1995-03-21 | 1 | -0/+58 |
| | |||||
* | made palatable for latex2html: | Guido van Rossum | 1995-03-16 | 1 | -48/+49 |
| | | | | removed $math$, added braces to \item[\tt...] | ||||
* | replace ASCII by macro call | Guido van Rossum | 1995-03-15 | 1 | -4/+4 |
| | |||||
* | clarified code objects | Guido van Rossum | 1995-03-07 | 1 | -3/+3 |
| | |||||
* | a few typographical changes (e.g. -- => ---) and lots of new stuff in the ↵ | Guido van Rossum | 1995-02-28 | 1 | -3/+3 |
| | | | | WWW chapter | ||||
* | copyright.tex: Add 1995 to copyright message. | Guido van Rossum | 1995-01-04 | 1 | -4/+8 |
| | | | | | | | | | | | | | | | lib.tex: add libimp; remove bogus warning about lineii. libmath.tex: document hypot(). libmd5.tex: rename md5.md5() to md5.new(). libposix.tex: document chown(). libposixfile.tex: openfile() instead of fileopen(). libsocket.tex: document gethostbyaddr(). libtypes.tex: add footnote explaining why readline() keeps the newline. ref3.tex: correct typos, add back*quotes to index. ref4.tex: don't use \verb inside footnote. ref5.tex: explain repr() and str() and add them + back*quotes to index. ref6.tex: correct typo, don't use \verb in footnote. ref7.tex: don't use \verb in footnote. | ||||
* | __call__, __getattr__ c.s. | Guido van Rossum | 1994-10-09 | 1 | -2/+51 |
| | |||||
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 1 | -108/+112 |
| | |||||
* | * ext.tex: documentation for extending, reference counts, and embedding | Guido van Rossum | 1993-11-05 | 1 | -3/+9 |
| | | | | | | | | | | | | | | | | | | (formerly ../misc/{EXTENDING,REFCNT,EMBEDDING}). Also affects Makefile. * text2latex.py: script to do part of the conversion from an plain ASCI text file (in my particular style) to LaTeX. (Chapter/section/subsection headers, and verbatim sections.) * partparse.py, texipre.dat, fix.el, Makefile: Minor cleanup of latex -> info conversion process (at least it works again, and with less debugging output). Removed fix.sh. * lib1.tex (section{Built-in Functions}): adapt description of str() and repr() to new situation. * lib3.tex (Module os): added exec*() variants. * lib3.tex (Module posix): added execve(). * lib2.tex (Module array): documented reality; remove typecode and itemsize, add byteswap, rename read/write to fromfile/tofile, and re-alphabetized. * lib1.tex (Built-in Functions): renamed bagof() to filter(). | ||||
* | * ref3.tex: added cross-ref to try statement for exc handler. | Guido van Rossum | 1993-10-11 | 1 | -2/+3 |
| | | | | | * ref7.tex: added description of sys.exc_{type,value,traceback}. * lib5.tex: rect.intersect is different now! | ||||
* | * lib1.tex: documented dict.items() and dict.values() | Guido van Rossum | 1993-05-24 | 1 | -0/+18 |
| | | | | | * ref3.tex: documented new __init__ and __del__ special methods of class instances. | ||||
* | Lots of small changes collected over months... | Guido van Rossum | 1993-05-12 | 1 | -8/+33 |
| | |||||
* | __oct__ and __hex__ | Guido van Rossum | 1992-09-20 | 1 | -0/+5 |
| | |||||
* | Initial revision | Guido van Rossum | 1992-08-14 | 1 | -0/+705 |