summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Collapse)AuthorAgeFilesLines
* merge 3.2Benjamin Peterson2011-06-011-1/+1
|\
| * demote this to a noteBenjamin Peterson2011-06-011-1/+1
| |
* | Merge 3.2.1rc1 release changes to default.Georg Brandl2011-05-211-11/+9
|\ \ | |/
| * Merge release branch after 3.2.1rc1.Georg Brandl2011-05-211-11/+9
| |\
| | * Update pydoc topics and handle suspicious markup.Georg Brandl2011-05-151-11/+9
| | |
* | | #12072: merge with 3.2.Ezio Melotti2011-05-201-1/+1
|\ \ \ | |/ /
| * | #12072: merge with 3.1.Ezio Melotti2011-05-201-1/+1
| |\ \ | | |/ | |/|
| | * #12072: add missing parenthesis in the doc. Patch by Sandro Tosi.Ezio Melotti2011-05-201-1/+1
| | |
* | | Merge #6498 fix from 3.2.Georg Brandl2011-05-151-5/+6
|\ \ \ | |/ /
| * | Merge #6498 fix from 3.1.Georg Brandl2011-05-151-5/+6
| |\ \ | | |/
| | * Closes #6498: fix several misspellings of "SystemExit" as "SystemError".Georg Brandl2011-05-151-5/+6
| | |
* | | #11997: merge with 3.2.Ezio Melotti2011-05-051-1/+1
|\ \ \ | |/ /
| * | #11997: merge with 3.1.Ezio Melotti2011-05-051-1/+1
| |\ \ | | |/
| | * #11997: fix typo in init.rst.Ezio Melotti2011-05-051-1/+1
| | |
* | | merge 3.2Benjamin Peterson2011-04-301-1/+1
|\ \ \ | |/ /
| * | merge 3.1Benjamin Peterson2011-04-301-1/+1
| |\ \ | | |/
| | * fix function name in example (closes #11966)Benjamin Peterson2011-04-301-1/+1
| | |
* | | #11942: merge with 3.2.Ezio Melotti2011-04-271-1/+1
|\ \ \ | |/ /
| * | #11942: merge with 3.1.Ezio Melotti2011-04-271-1/+1
| |\ \ | | |/
| | * #11942: Fix return type of Py_AddPendingCall. Patch by Sandro Tosi.Ezio Melotti2011-04-271-1/+1
| | |
| | * Branch mergeÉric Araujo2011-04-241-2/+1
| | |\
* | | \ Merge 3.2Éric Araujo2011-04-271-1/+0
|\ \ \ \ | |/ / /
| * | | The version* directives don’t work with a blank line between argumentsÉric Araujo2011-04-241-1/+0
| | | |
| * | | Branch mergeÉric Araujo2011-04-241-2/+1
| |\ \ \
* | \ \ \ Branch mergeÉric Araujo2011-04-241-2/+1
|\ \ \ \ \
| * \ \ \ \ Merge 3.2Éric Araujo2011-04-201-2/+1
| |\ \ \ \ \ | | | |/ / / | | |/| | |
| | * | | | Merge 3.1Éric Araujo2011-04-201-2/+1
| | |\ \ \ \ | | | | |_|/ | | | |/| |
| | | * | | Branch mergeÉric Araujo2011-04-201-2/+1
| | | |\ \ \
| | | | * | | Kill last reference to defunct moduleÉric Araujo2011-03-261-2/+1
| | | | | | |
* | | | | | | Merge with 3.2.Ezio Melotti2011-04-201-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | / / | | |_|_|/ / | |/| | | |
| * | | | | Merge with 3.1.Ezio Melotti2011-04-201-1/+1
| |\ \ \ \ \ | | |/ / / / | |/| | | / | | | |_|/ | | |/| |
| | * | | Fix wrong function name. Noticed by Clive Darke.Ezio Melotti2011-04-201-1/+1
| | |/ /
* | | | #11865: Merge with 3.2.Ezio Melotti2011-04-181-1/+1
|\ \ \ \ | |/ / /
| * | | #11865: Merge with 3.1.Ezio Melotti2011-04-181-1/+1
| |\ \ \ | | |/ /
| | * | #11865: fix typo in init.rst.Ezio Melotti2011-04-181-1/+1
| | | |
* | | | #11840: Merge with 3.2.Ezio Melotti2011-04-141-33/+31
|\ \ \ \ | |/ / /
| * | | #11840: Merge with 3.1.Ezio Melotti2011-04-141-33/+31
| |\ \ \ | | |/ /
| | * | #11840: Improve c-api/unicode documentation. Patch by Sandro Tosi.Ezio Melotti2011-04-141-29/+27
| | |/
* | | Fix a typo (see #3080)Éric Araujo2011-03-201-2/+2
| | |
* | | Issue #3080: Add PyImport_ImportModuleLevelObject() functionVictor Stinner2011-03-141-1/+8
| | | | | | | | | | | | Use it for the builtin __import__ function.
* | | Issue #3080: Document the name attribute of the _inittab structureVictor Stinner2011-03-071-5/+5
| | | | | | | | | | | | The name is an ASCII encoded string.
* | | Issue #3080: Add PyImport_ImportFrozenModuleObject()Victor Stinner2011-03-201-1/+9
| | | | | | | | | | | | | | | find_frozen(), get_frozen_object(), is_frozen_package() and other functions related to frozen modules use Unicode strings instead of byte strings.
* | | Merge doc updateAntoine Pitrou2011-03-151-2/+3
|\ \ \ | |/ /
| * | Followup to 4c59cd84086f: add an entry in the porting guide and a ↵Antoine Pitrou2011-03-151-2/+3
| | | | | | | | | | | | "versionchanged" attribute.
* | | Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() ↵Antoine Pitrou2011-03-131-4/+2
|\ \ \ | |/ / | | | | | | anymore
| * | Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() ↵Antoine Pitrou2011-03-131-4/+2
| | | | | | | | | | | | anymore
* | | Remove documentation to non-existent function PyObject_CopyToObject (fixes ↵Antoine Pitrou2011-03-131-14/+0
|\ \ \ | |/ / | | | | | | #11478)
| * | Remove documentation to non-existent function PyObject_CopyToObject (fixes ↵Antoine Pitrou2011-03-131-14/+0
| |\ \ | | |/ | | | | | | #11478)
| | * Remove documentation to non-existent function PyObject_CopyToObject (fixes ↵Antoine Pitrou2011-03-131-14/+0
| | | | | | | | | | | | #11478)
| | * Merged revisions ↵Georg Brandl2011-02-252-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 87101,87146,87156,87172,87175,87371,87378,87522-87524,87526-87528,87530-87536,87581 via svnmerge from svn+ssh://svn.python.org/python/branches/py3k ........ r87101 | georg.brandl | 2010-12-06 23:02:48 +0100 (Mo, 06 Dez 2010) | 1 line Remove visible XXX comments. ........ r87146 | georg.brandl | 2010-12-09 19:08:43 +0100 (Do, 09 Dez 2010) | 1 line Fix "seperate". ........ r87156 | georg.brandl | 2010-12-10 11:01:44 +0100 (Fr, 10 Dez 2010) | 1 line #10668: fix wrong call of __init__. ........ r87172 | georg.brandl | 2010-12-11 20:10:30 +0100 (Sa, 11 Dez 2010) | 1 line Avoid AttributeError(_closed) when a TemporaryDirectory is deallocated whose mkdtemp call failed. ........ r87175 | georg.brandl | 2010-12-11 23:19:34 +0100 (Sa, 11 Dez 2010) | 1 line Fix markup. ........ r87371 | georg.brandl | 2010-12-18 17:21:58 +0100 (Sa, 18 Dez 2010) | 1 line Fix typo. ........ r87378 | georg.brandl | 2010-12-18 18:51:28 +0100 (Sa, 18 Dez 2010) | 1 line #10723: add missing builtin exceptions. ........ r87522 | georg.brandl | 2010-12-28 10:16:12 +0100 (Di, 28 Dez 2010) | 1 line Replace sys.maxint mention by sys.maxsize. ........ r87523 | georg.brandl | 2010-12-28 10:18:24 +0100 (Di, 28 Dez 2010) | 1 line Remove confusing paragraph -- this is relevant only to advanced users anyway and does not belong into the tutorial. ........ r87524 | georg.brandl | 2010-12-28 10:29:19 +0100 (Di, 28 Dez 2010) | 1 line Fix advice: call PyType_Ready to fill in ob_type of custom types. ........ r87526 | georg.brandl | 2010-12-28 11:38:33 +0100 (Di, 28 Dez 2010) | 1 line #10777: fix iteration over dict keys while mutating the dict. ........ r87527 | georg.brandl | 2010-12-28 11:56:20 +0100 (Di, 28 Dez 2010) | 1 line #10768: fix ScrolledText widget construction, and make the example work from the interactive shell. ........ r87528 | georg.brandl | 2010-12-28 12:02:12 +0100 (Di, 28 Dez 2010) | 1 line Add news entry and clarify another. ........ r87530 | georg.brandl | 2010-12-28 12:06:07 +0100 (Di, 28 Dez 2010) | 1 line #10767: update README in crashers; not all may have a bug entry and/or be fixed. ........ r87531 | georg.brandl | 2010-12-28 12:08:17 +0100 (Di, 28 Dez 2010) | 1 line #10742: document readonly attribute of memoryviews. ........ r87532 | georg.brandl | 2010-12-28 12:15:49 +0100 (Di, 28 Dez 2010) | 1 line #10781: clarify that *encoding* is not a parameter for Node objects in general. ........ r87533 | georg.brandl | 2010-12-28 12:38:12 +0100 (Di, 28 Dez 2010) | 1 line Remove history; adapt a bit more to reST, since this will once be part of the dev guide. ........ r87534 | georg.brandl | 2010-12-28 12:48:53 +0100 (Di, 28 Dez 2010) | 1 line Rewrap. ........ r87535 | georg.brandl | 2010-12-28 12:49:41 +0100 (Di, 28 Dez 2010) | 1 line #10739: document that on Windows, socket.makefile() does not make a file that has a true file descriptor usable where such a thing is expected. ........ r87536 | georg.brandl | 2010-12-28 12:53:25 +0100 (Di, 28 Dez 2010) | 1 line #10609: fix non-working dbm example. ........ r87581 | georg.brandl | 2010-12-30 18:36:17 +0100 (Do, 30 Dez 2010) | 1 line Fix NameErrors. ........