summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Patch #626485: Support Unicode normalization.Martin v. Löwis2002-11-231-3/+37
|
* Added change note about returning a dictionary based on keywordFred Drake2002-11-231-0/+2
| | | | arguments.
* Patch #642500 with slight modifications: allow keyword arguments inJust van Rossum2002-11-231-14/+21
| | | | | | | dict() constructor. Example: >>> dict(a=1, b=2) {'a': 1, 'b': 2} >>>
* Clarify the default setting for daemon_threads.Fred Drake2002-11-221-1/+3
|
* Fix markup.Fred Drake2002-11-221-1/+1
|
* Patch #486438: Make module argument to testmod optional.Martin v. Löwis2002-11-221-1/+5
|
* Patch #550765: Add daemon_threads flag.Martin v. Löwis2002-11-221-0/+8
|
* added details of new IMAP4_stream class; emphasised meaning of data part of ↵Piers Lauder2002-11-221-7/+29
| | | | command results; added proxyauth command description
* Patch #633547: Support plural forms. Do TODOs in test suite.Martin v. Löwis2002-11-211-0/+45
|
* NamedTemporaryFile: clarify behavior based on confusions noted by aTim Peters2002-11-211-2/+5
| | | | user, and spell out a x-platform use limitation.
* Add change to int() and OverflowErrorAndrew M. Kuchling2002-11-201-9/+19
| | | | Re-order the "porting" section to list items by decreasing significance
* Document additional error handling names available through PEP 293.Walter Dörwald2002-11-191-2/+6
|
* Change int() so that passing a string, unicode, float or long argumentWalter Dörwald2002-11-192-2/+5
| | | | | | | that is outside the integer range no longer raises OverflowError, but returns a long object instead. This fixes SF bug http://www.python.org/sf/635115
* Use \ulink instead of \citetitle; bump version numberAndrew M. Kuchling2002-11-191-7/+7
|
* Add PyBSDDB updateAndrew M. Kuchling2002-11-191-2/+12
|
* Improve comments. Clarify docs.Raymond Hettinger2002-11-181-11/+12
| | | | | Replace "type(0)" with "int". Replace "while 1" with "while True"
* Improve DictMixin.Raymond Hettinger2002-11-181-8/+9
| | | | | | | | | | | Replaced docstring with comments. Prevents subclass contamination. Added the missing __cmp__() method and a test for __cmp__(). Used try/except style in preference to has_key() followed by a look-up. Used iteritem() where possible to save creating a long key list and to save redundant lookups. Expanded .update() to look for the most helpful methods first and gradually work down to a mininum expected interface. Expanded documentation to be more clear on how to use the class.
* correct typo detected by Lee HansenSkip Montanaro2002-11-171-1/+1
|
* Better note that str.zfill() was added in 2.2.2 as well. ;-(Fred Drake2002-11-161-0/+1
|
* Document that a minor feature was added in 2.2.2. ;-(Fred Drake2002-11-161-0/+3
| | | | Closes SF bug #639170.
* SF 639138, Ref. calendar module in time docs by John J LeeNeal Norwitz2002-11-151-0/+3
| | | | Will backport.
* Minor markup nits.Fred Drake2002-11-151-4/+5
|
* Fix stupid typo.Fred Drake2002-11-151-1/+1
|
* Document the available command line flags for bdist_wininst, which areThomas Heller2002-11-151-15/+29
| | | | | | | | | | | | | avaliable in the Python 2.2 branch. I've left out some flags which are more thought for debugging, if someone needs them, he can always look at the output of --help. I'm sure Fred will make some adjustments, so I'll only mark this as a 2.2 bugfix candidate. There are more options available in the current CVS bdist_wininst, I will document them after this is in.
* Correct typo: the option is 'formats' not 'format'.Thomas Heller2002-11-151-1/+1
|
* Squash an enormous number of warnings reported when adding "useFred Drake2002-11-151-128/+138
| | | | | | | | | | warnings;" to this, and keep the "use" statement this time. Fix an obscure bug that caused weird index entries to be generated in a few cases, and a minor problem with horizontal alignmetn of the last column of 5-column tables. [I'd report a SF bug #, but I can't get to that right now.]
* Fix critical markup errors.Fred Drake2002-11-151-2/+2
|
* Minor revisions to clarify the status of xreadlines(), change the wayFred Drake2002-11-151-15/+14
| | | | | iteration support was documented; the docs for __iter__() were just confusing.
* Mention that the MRO algorithm changes in 2.3Andrew M. Kuchling2002-11-151-0/+3
|
* Mention change in MROAndrew M. Kuchling2002-11-151-0/+13
|
* SF patch #520382: Expand shelve.py to have a full dictionary interfaceRaymond Hettinger2002-11-152-1/+28
| | | | | and add a mixin to UserDict.py to make it easier to implement a full dictionary interface.
* Draft a section on modifying Python's path. I'm not sure whereAndrew M. Kuchling2002-11-151-7/+86
| | | | | this section fits best in inst.tex's organization; Fred or someone, feel free to move it.
* Add section on OptikAndrew M. Kuchling2002-11-141-2/+73
|
* Finish up the logging sectionAndrew M. Kuchling2002-11-141-45/+78
|
* Add partial section on the logging package; not finished yet.Andrew M. Kuchling2002-11-141-5/+109
|
* add libloggingSkip Montanaro2002-11-141-0/+1
|
* initial rough cut at documentation of logging module. This is basicallySkip Montanaro2002-11-141-0/+1139
| | | | just a conversion of pydoc.help(logging).
* Integrate updates to the GNU info conversion.Fred Drake2002-11-133-60/+85
| | | | | This includes SF patch #590352 and additional support for more of the custom markup.
* - Committing the modified signature lines I've been using for a longFred Drake2002-11-131-3/+7
| | | | | | time in http://www.python.org/dev/doc/. There have been no bug reports on these for a long time now. - Remove local "use" statement that duplicates a top-level "use".
* Document struct_time and the field names.Fred Drake2002-11-131-14/+25
|
* Add \funcline, \funclineni, and \methodlineni to the list of functionsFred Drake2002-11-131-0/+3
| | | | | that are processed before their arguments. Closes SF bug #637807.
* Fix broken markup.Fred Drake2002-11-131-1/+1
| | | | Closes SF bug #637807.
* Typo: it's --> itsFred Drake2002-11-131-1/+1
| | | | Closes SF bug #637810.
* Update: Older versions of Python crashed when calling repr()Fred Drake2002-11-131-3/+5
| | | | | | (including the implied call using back-ticks) of a recursive object, but this is no longer the case. Reported by Manus Hand via email.
* Clarify that PyImport_AddModule() and PyImport_ExecCodeModule() don'tFred Drake2002-11-131-3/+7
| | | | | | add any package support structure even if a dotted-name is passed for the module. Closes SF bug #424106.
* Normalize whitespace.Fred Drake2002-11-131-61/+62
| | | | Fix a number of markup consistency buglets.
* Fill out the 'Porting' sectionAndrew M. Kuchling2002-11-131-2/+62
| | | | Add random.sample()
* Clarified meaning of \w and \W with respect to the UNICODE and LOCALE flags.Fred Drake2002-11-121-5/+5
| | | | Closes SF bug #635595.
* SF patch 637176: list.sort crasherTim Peters2002-11-121-1/+7
| | | | | | | | | | | Armin Rigo's Draconian but effective fix for SF bug 453523: list.sort crasher slightly fiddled to catch more cases of list mutation. The dreaded internal "immutable list type" is gone! OTOH, if you look at a list *while* it's being sorted now, it will appear to be empty. Better than a core dump.
* Clarified documentation of tempnam().Fred Drake2002-11-121-0/+4
| | | | Closes SF bug #635656.