summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Document __unicode__. Fixes #541245.Martin v. Löwis2002-04-111-0/+7
|
* Explain octal escapes. Fixes #542226.Martin v. Löwis2002-04-111-5/+3
|
* Add a nameAndrew M. Kuchling2002-04-101-1/+1
|
* Remove mention of 'pre' moduleAndrew M. Kuchling2002-04-101-9/+0
| | | | (2.2 bugfix candidate?)
* Document PyType_CheckExact(), PyType_IS_GC().Fred Drake2002-04-101-1/+16
| | | | Update description of PyType_Check().
* document all the valid encoding valuesSkip Montanaro2002-04-101-1/+4
|
* When adding a name to the table of macros and environments, make sure itFred Drake2002-04-101-1/+4
| | | | | is not already present. If it is, raise an exception, since that should not happen in a well-defined conversion.
* Added support for \csimplemacro and csimplemacrodesc.Fred Drake2002-04-101-0/+6
|
* Started filling in the information about some of the basic types and macrosFred Drake2002-04-091-2/+69
| | | | used to define Python objects.
* Update to use the new \csimplemacro macroFred Drake2002-04-092-22/+24
|
* Document the \csimplemacro macro and the csimplemacrodesc environment.Fred Drake2002-04-091-0/+20
|
* Add \csimplemacro to parallel the csimplemacrodesc environment.Fred Drake2002-04-091-1/+2
| | | | Fix a typo in the comments for csimplemacrodesc.
* Update docs for bool changes by Guido around April 6Neal Norwitz2002-04-096-16/+16
|
* Ignore an output directory for intermediates here as well.Fred Drake2002-04-091-0/+1
|
* Fix typo: coverted --> converted. Reported by Francois Pinard.Fred Drake2002-04-091-1/+1
|
* Update the table of releases.Fred Drake2002-04-081-0/+3
|
* Patch #512005: getrusage() returns struct-like object.Martin v. Löwis2002-04-081-33/+39
|
* Do not call "knee" a standard module, and point to the new location.Fred Drake2002-04-081-3/+3
| | | | This addresses the issue in SF bug #515745.
* Minor clarification about what's actually promised for PyMem_Malloc(0).Tim Peters2002-04-061-6/+8
| | | | | I probably didn't do a correct thing for the LaTeX spelling of the integer 1.
* Move reference material on PyArg_Parse*() out of the Extending & EmbeddingFred Drake2002-04-055-485/+530
| | | | | | | | document to the C API reference. Move some instructional text from the API reference to the Extending & Embedding manual. Fix the descriptions of the es and es# formats for PyArg_Parse*(). This closes SF bug #536516.
* Remove weird spacing in typeset version of the chapter head.Fred Drake2002-04-051-1/+1
|
* Fix bug in command line handling, noted by Fredrik Lundh.Fred Drake2002-04-051-1/+1
|
* Add support for the "Aesop Meta Tag". Not widely used, but not a bad idea,Fred Drake2002-04-054-0/+31
| | | | either.
* Update doc to reflect Tim's changes to bool.Neal Norwitz2002-04-058-27/+28
|
* Minor style change.Fred Drake2002-04-041-0/+2
|
* Add support for \textgreater, \textless.Fred Drake2002-04-041-4/+9
| | | | Updated productionlist environment.
* Add a version annotation regarding the urlopen(proxies={...}).Fred Drake2002-04-041-0/+2
|
* The rest of the documentation for manual proxy configuration for a basicFred Drake2002-04-041-3/+20
| | | | | urlopen(). This is part of SF patch #523415.
* Documentation for manual proxy configuration, by Andy Gimblett.Fred Drake2002-04-041-0/+35
| | | | This closes SF patch #523415.
* Mark the notice about the new development version of the docs as not needingFred Drake2002-04-041-0/+1
| | | | to be archived. Most of these are pretty bland. ;-)
* Removed old Digital Creations copyright/license notices (withGuido van Rossum2002-04-041-3/+3
| | | | | permission from Paul Everitt). Also removed a few other references to Digital Creations and changed the remaining ones to Zope Corporation.
* SF 539024, Fix broken link to numpyNeal Norwitz2002-04-041-1/+1
|
* Correct the descriptions of the PyObject_As*Buffer() return values.Fred Drake2002-04-041-6/+6
| | | | This closes SF bug #539081.
* Add empty section for boolAndrew M. Kuchling2002-04-031-0/+12
|
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-033-13/+58
| | | | | | | | | | | | | PEP 285. Everything described in the PEP is here, and there is even some documentation. I had to fix 12 unit tests; all but one of these were printing Boolean outcomes that changed from 0/1 to False/True. (The exception is test_unicode.py, which did a type(x) == type(y) style comparison. I could've fixed that with a single line using issubtype(x, type(y)), but instead chose to be explicit about those places where a bool is expected. Still to do: perhaps more documentation; change standard library modules to return False/True from predicates.
* Updated PEP link to point to the now-canonical site.Fred Drake2002-04-031-1/+1
|
* Update the PEP URL format to point to python.org.Fred Drake2002-04-031-1/+1
|
* Add a note warning against semicolons following PyObject_HEAD.Fred Drake2002-04-021-5/+9
| | | | Minor cleanups.
* Add an itemAndrew M. Kuchling2002-04-021-0/+20
|
* Add an experimental mechanism to support extending the pprint formatting.Fred Drake2002-04-021-0/+23
| | | | Partly responds to SF bug #505152.
* Explain that os.spawn*() return the process handle on Windows.Fred Drake2002-04-011-3/+5
| | | | | Clarify that os.waitpid() on Windows takes a process handle, not a process ID. This closes SF bug #537582.
* There is no PyArg_ConvertTuple(); call it by the right name.Fred Drake2002-04-011-1/+1
| | | | This closes SF bug #537511.
* Fix up the documentation of the type codes to give both the C and PythonFred Drake2002-04-011-17/+24
| | | | | | | | | types for each code, and give the actual C types. Clarified the support for slice operations and note when some TypeError exceptions are raised. This closes SF bugs 518767 and 536469.
* Change reference to execframes to naming.Jeremy Hylton2002-04-011-1/+1
|
* Restore a minimal definition of execution frame, since other parts ofJeremy Hylton2002-04-011-0/+6
| | | | | | | | the manual refer to it. XXX Not sure that it belongs in this section, or that the concept is particularly important for writing documentation. Perhaps references to the frame should be removed entirely.
* Update programmer's note on nested functions.Jeremy Hylton2002-04-011-5/+5
|
* Reword explanation of global statement since an undeclared global is aJeremy Hylton2002-04-011-3/+3
| | | | free variable and is subject to those rules.
* Note the sole case in which the ban on "from ... import *" within aJeremy Hylton2002-04-011-1/+5
| | | | function is enforced.
* Remove the following restriction:Jeremy Hylton2002-04-011-4/+0
| | | | | | | Names bound by import statements may not occur in global statements in the same scope. Why not?
* Note that it is illegal to delete a cell variable.Jeremy Hylton2002-04-011-2/+6
| | | | Note that deleteing an unbound local will raise a NameError.