summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Preparing for 2.5 final.v2.5Anthony Baxter2006-09-181-1/+1
| | | | | | (damn, it's nice to see the line #define PY_VERSION "2.5" in patchlevel.h)
* revise explanation of returns_unicode to reflect bool valuesFred Drake2006-09-151-3/+4
| | | | and to include the default value
* - fix module name in links in formatted documentationFred Drake2006-09-151-25/+14
| | | | - minor markup cleanup
* Backport uuid doc cleanup from rev. 51883.Georg Brandl2006-09-151-22/+21
|
* Correct elementtree module index entry.Georg Brandl2006-09-151-1/+1
| | | | (backport)
* Backport rev 51866-51868 from trunk (sqlite3 documentation fixes).Georg Brandl2006-09-141-48/+51
|
* preparing for 2.5c2Anthony Baxter2006-09-111-1/+1
|
* Fix typo in exampleAndrew M. Kuchling2006-09-081-1/+1
|
* Use native SQLite typesAndrew M. Kuchling2006-09-081-2/+2
|
* Explain SQLite a bit more clearlyAndrew M. Kuchling2006-09-081-6/+8
|
* Rearrange example a bit, and show rpartition() when separator is not foundAndrew M. Kuchling2006-09-051-2/+4
|
* Bug #1552618: change docs of dict.has_key() to reflect recommendationGeorg Brandl2006-09-051-5/+5
| | | | | to use "in". (backport from rev. 51740)
* Fix str.rpartition(sep) when sep is not found in str.Neal Norwitz2006-09-051-2/+2
| | | | Partially from SF patch #1551339, but also taken from head.
* Backport of decimal module context management updates from rev 51694 to 2.5 ↵Nick Coghlan2006-09-032-30/+31
| | | | release branch
* Backport 51663:Neal Norwitz2006-09-031-2/+2
| | | | Doc fix: hashlib objects don't always return a digest of 16 bytes.
* SF #1547931, fix typo (missing and). Backport candidate for 2.3/2.4 tooNeal Norwitz2006-09-021-1/+1
|
* evalfile() should be execfile().Georg Brandl2006-09-011-1/+1
| | | | (backport from rev. 51677)
* - SF patch #1550263: Enhance and correct unittest docsFred Drake2006-09-011-32/+70
| | | | - various minor cleanups for improved consistency
* patch for documentation for recent uuid changes (from ping)Anthony Baxter2006-08-221-15/+15
|
* Minor editsAndrew M. Kuchling2006-08-182-3/+3
|
* Typo in tp_clear docs.Georg Brandl2006-08-181-1/+1
| | | | (backport from rev. 51368)
* Bug #1541682: Fix example in the "Refcount details" API docs.Georg Brandl2006-08-183-22/+20
| | | | | | Additionally, remove a faulty example showing PySequence_SetItem applied to a newly created list object and add notes that this isn't a good idea. (backport from rev. 51364)
* Tutorial:Thomas Heller2006-08-161-29/+48
| | | | | | | | | | | | | Clarify somewhat how parameters are passed to functions (especially explain what integer means). Correct the table - Python integers and longs can both be used. Further clarification to the table comparing ctypes types, Python types, and C types. Reference: Replace integer by C ``int`` where it makes sense.
* Update bug/patch countsAndrew M. Kuchling2006-08-161-1/+1
|
* Link to docs; remove an XXX commentAndrew M. Kuchling2006-08-161-3/+1
|
* Bump document version to 1.0; remove pystone paragraphAndrew M. Kuchling2006-08-161-4/+1
|
* Add UnicodeWarningAndrew M. Kuchling2006-08-161-0/+34
|
* preparing for 2.5c1Anthony Baxter2006-08-161-1/+1
|
* Improve markup in PyUnicode_RichCompare.Georg Brandl2006-08-141-19/+14
|
* Slightly revised version of patch #1538956:Marc-André Lemburg2006-08-144-4/+38
| | | | | | | | | | Replace UnicodeDecodeErrors raised during == and != compares of Unicode and other objects with a new UnicodeWarning. All other comparisons continue to raise exceptions. Exceptions other than UnicodeDecodeErrors are also left untouched.
* SF bug #1539336, distutils example code missingNeal Norwitz2006-08-131-0/+2
|
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-3/+22
| | | | | | | I modified this patch some by fixing style, some error checking, and adding XXX comments. This patch requires review and some changes are to be expected. I'm checking in now to get the greatest possible review and establish a baseline for moving forward. I don't want this to hold up release if possible.
* Followup to bug #1069160.Tim Peters2006-08-101-6/+6
| | | | | | PyThreadState_SetAsyncExc(): internal correctness changes wrt refcount safety and deadlock avoidance. Also added a basic test case (relying on ctypes) and repaired the docs.
* Reindent codeAndrew M. Kuchling2006-08-091-31/+33
|
* Add missing 'self' parametersAndrew M. Kuchling2006-08-091-3/+6
|
* [Patch #1534027] Add notes on locale module changesAndrew M. Kuchling2006-08-091-5/+34
|
* [Bug #1536021] Mention __hash__ changeAndrew M. Kuchling2006-08-091-2/+10
|
* __hash__ may now return long int; the final hashMartin v. Löwis2006-08-091-0/+5
| | | | | value is obtained by invoking hash on the long int. Fixes #1536021.
* ``str`` is now the same object as ``types.StringType``.Georg Brandl2006-08-081-17/+24
|
* Bug #1536660: separate two words.Georg Brandl2006-08-081-1/+1
|
* Bug #1536828: typo: TypeType should have been StringType.Georg Brandl2006-08-081-1/+1
|
* Bump version numberAndrew M. Kuchling2006-08-081-1/+1
|
* 'Other changes' section now has only one item; move the item elsewhere and ↵Andrew M. Kuchling2006-08-081-22/+13
| | | | remove the section
* Move obmalloc item into C API sectionAndrew M. Kuchling2006-08-081-29/+29
|
* Reword paragraph to clarifyAndrew M. Kuchling2006-08-081-4/+5
|
* Patch #1534922: correct and enhance unittest docs.Georg Brandl2006-08-051-142/+174
|
* Fix mangled sentenceAndrew M. Kuchling2006-08-041-1/+1
|
* fix typosGregory P. Smith2006-08-041-4/+4
|
* Fix a mistake.Thomas Heller2006-08-021-3/+3
|
* A few nore words about what ctypes does.Thomas Heller2006-08-021-7/+28
| | | | | Document that using the wrong calling convention can also raise 'ValueError: Procedure called with the wrong number of arguments'.