summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Add documentation for __future__Jeremy Hylton2003-05-211-0/+69
|
* Move future statement here from appendix a.Jeremy Hylton2003-05-211-0/+78
|
* Don't mention __slots__ as a technique for error avoidanceAndrew M. Kuchling2003-05-201-10/+6
|
* Fix markup nits.Fred Drake2003-05-201-4/+4
|
* Straighten out the docs for os.system(); the Unix and Windows behaviorsTim Peters2003-05-201-5/+13
| | | | | | really can't be smushed together. Bugfix candidate.
* Markup nits.Fred Drake2003-05-201-5/+5
|
* Remove unused line numbers from example code.Fred Drake2003-05-201-28/+27
| | | | Line numbering of examples is not used elsewhere.
* Fix missing parethesis.Raymond Hettinger2003-05-201-1/+1
|
* Add docs for key_file and cert_file arguments for HTTPSConnection. Copied ↵Brett Cannon2003-05-201-1/+7
| | | | from socket.ssl docs.
* * Correct Sniffer doc to correspond to the implementation.Skip Montanaro2003-05-191-7/+7
| | | | | * Add optional delimiters arg to Sniffer.sniff() which restricts the set of candidate field delimiters.
* Fix array.array.insert(), so that it treats negative indices asWalter Dörwald2003-05-181-1/+2
| | | | | being relative to the end of the array, just like list.insert() does. This closes SF bug #739313.
* Missing parenthesis.Raymond Hettinger2003-05-161-1/+1
|
* Added some missing PyObject* casts in the deallocators.Jim Fulton2003-05-163-2/+11
| | | | | | | Added some defines for PyMODINIT_FUNC so that the examples work with Python 2.2. I think I'm done hacking this documentation. Yippie! :)
* Added a missing PyObject* cast to the dealloc examples.Jim Fulton2003-05-161-2/+10
| | | | | Added a note that the mechanism for defining new tyoes documented here only works for Python 2.2 and higher.
* Removed reference to the out-of-date (and not very useful)Jim Fulton2003-05-161-23/+9
| | | | | | | Objects/xxobject.c example. Updated the discussion of type checking to refer to PyObject_TypeCheck.
* Add docs for MessageBeep.Guido van Rossum2003-05-161-0/+30
|
* [Bug #471893] Replace security material with a warning against unpicklingAndrew M. Kuchling2003-05-142-74/+31
| | | | untrusted data.
* document Stats.dump_stats(), new for Python 2.3Fred Drake2003-05-141-0/+8
|
* When an external application we use exits normally, exit with the sameFred Drake2003-05-141-2/+4
| | | | | | exit code they returned. All other types of exit from child processes are normalized to a return code of 1. Closes SF bug #732143.
* Add optional 'onerror' argument to os.walk(), to control errorGuido van Rossum2003-05-131-1/+9
| | | | handling.
* [Bug #713722] Delete dangling references to unwritten sectionsAndrew M. Kuchling2003-05-131-5/+2
|
* [Bug #732124] Clarify .pos, .endpos by saying 'method' instead of 'function'Andrew M. Kuchling2003-05-131-18/+19
| | | | Also, put match() description before search(); search() refers to match()
* Remove more markup from headersAndrew M. Kuchling2003-05-132-4/+4
|
* [Bug #729297] Remove markup in section headersAndrew M. Kuchling2003-05-131-3/+3
|
* [Bug #729817] Document the rexec and Bastion modules as deadAndrew M. Kuchling2003-05-133-19/+17
|
* Fix typoAndrew M. Kuchling2003-05-131-1/+1
|
* Fix and add reference to urllib.urlencode for parse_qsl? functions.Brett Cannon2003-05-131-1/+5
|
* Updated simple example. This should have been checked in the otherJim Fulton2003-05-121-45/+45
| | | | day, but I missfired in CVS.
* Add a specific mention of the term "operator overloading" and add anFred Drake2003-05-121-1/+4
| | | | index entry. Suggested to python-docs.
* Fix minor typos.Raymond Hettinger2003-05-124-5/+5
|
* - object is a class type, not a functionFred Drake2003-05-101-3/+4
| | | | | - when marking a function, the trailing () should be included consistently
* Fix unbalanced parethesis.Raymond Hettinger2003-05-102-2/+2
|
* Missing parenthesis found by texcheck.pyRaymond Hettinger2003-05-103-4/+4
|
* Patch #612627: Add encoding attribute to file objects, and determineMartin v. Löwis2003-05-102-0/+20
| | | | the terminal encoding on Windows and Unix.
* Fix missing parenthesis.Raymond Hettinger2003-05-101-1/+1
|
* Fixed spacing and unbalanced brackets or parenthesis.Raymond Hettinger2003-05-105-6/+7
|
* Make this format again.Fred Drake2003-05-091-10/+12
|
* add a note about accessing user-defined functions with an import statementSkip Montanaro2003-05-091-0/+17
| | | | in the setup parameter
* Make this format again.Fred Drake2003-05-091-5/+7
|
* - remove bogus \end{description}Fred Drake2003-05-091-3/+2
| | | | - fix two typos
* Documented the new autoGIL module.Jack Jansen2003-05-093-0/+28
|
* Fixed small typo Pointed out by Michael Hudson.Jim Fulton2003-05-081-1/+1
|
* Fixed a typo in an example dealloc routine that calls it's "self"Jim Fulton2003-05-081-1/+1
| | | | argument "obj" rather than "self".
* Clarify the dedent() example a bit by indenting the input lines unevenly.Greg Ward2003-05-081-4/+4
|
* SF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net):Greg Ward2003-05-081-4/+29
| | | | document dedent() function.
* Library documentation for the 'test' package. Still needs to be checked by ↵Brett Cannon2003-05-072-0/+276
| | | | Fred.
* Rewrote the basic section of the chapter on defining new types.Jim Fulton2003-05-073-125/+946
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changed the example to show how to create types the new way: - Use a class new method rather than a new function. - Use self->ob_type->tp_free in deallocators - Use attribute descriptors rather than set/getattr methods. - Make the type usable as a base type. I split the example into 3 parts: 1. The minimal new type 2. Adding attributes and methods. 3. Finer control over attributes. It's much simpler to define builtin types. These updates hopefully show this. I also made minor wording changes in two other places. I still need to update xxobject.c
* More message updates and minor fixes.Raymond Hettinger2003-05-071-10/+9
|
* Update traceback messageRaymond Hettinger2003-05-071-1/+1
|
* Add list.insert() change for negative positionsAndrew M. Kuchling2003-05-071-9/+15
| | | | | | Add ~ to MvL's last name Fix use of all-caps for a name Bump version number