summaryrefslogtreecommitdiffstats
path: root/Doc/extending
Commit message (Collapse)AuthorAgeFilesLines
* emphasize that cffi is better than extension modules for portabilityBenjamin Peterson2015-01-051-5/+10
|
* Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-292-2/+2
|
* Closes #19071: "self" argument is not the module for module functions in 2.x.Georg Brandl2014-10-061-2/+3
|
* Issue #19407: add Python Packaging User Guide notesNick Coghlan2013-12-101-0/+9
| | | | | | | | | | The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs.
* Issue 19195: Improved cross-references in C API documentation.Serhiy Storchaka2013-10-093-6/+7
|
* Closes #17725: small grammar fix.Georg Brandl2013-10-061-6/+6
|
* Minor improvement: add indication that the main function goes on.Georg Brandl2013-10-061-0/+2
|
* Small clarification in extending docs.Georg Brandl2013-10-061-1/+1
|
* Issue #18589: fix hyperlinking of type slots (tp_*)Antoine Pitrou2013-08-011-49/+49
|
* Issue #18164: Backport the more detailed embedding compile-and-link sectionNed Deily2013-06-241-28/+46
| | | | from the Python 3 documentation.
* Fix the highlight in another example.Ezio Melotti2013-02-221-1/+3
|
* #17256: fix syntax highlight in embedding example. Patch by Kushal Das.Ezio Melotti2013-02-221-2/+6
|
* Grammar touchup.Georg Brandl2012-11-021-12/+10
|
* Issue #16370: Mention Py_SetProgramName in example for very high level ↵Andrew Svetlov2012-10-311-8/+13
| | | | embedding.
* Backport from 3.2: remove "Release" and "Date" markers from index pages.Chris Jerdonek2012-10-281-3/+0
|
* Closes #15953: Incorrect some fields declaration in the PyTypeObject ↵Jesus Cea2012-09-281-3/+3
| | | | documentation
* Issue #14933: fix misleading doc about weakref support in extension types.Antoine Pitrou2012-06-151-3/+2
|
* update to new C roles and directivesSandro Tosi2012-01-144-211/+211
|
* Issue #12672: remove confusing part of sentence in documentationEli Bendersky2011-08-191-2/+1
|
* Merged revisions ↵Georg Brandl2011-02-251-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 87050,87101,87146,87156,87172,87175,87371,87378,87522-87524,87526,87530-87535 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87050 | georg.brandl | 2010-12-04 18:09:30 +0100 (Sa, 04 Dez 2010) | 1 line Fix typo. ........ 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. ........ 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. ........
* #10398: manual backport of r73943.Georg Brandl2010-11-121-4/+2
|
* Merged revisions 84810 via svnmerge fromDaniel Stutzbach2010-09-141-3/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84810 | daniel.stutzbach | 2010-09-14 11:02:01 -0500 (Tue, 14 Sep 2010) | 1 line Remove pointers to a FAQ entry that no longer exists. Incorporate some text from the old FAQ into the docs ........
* Merged revisions ↵Georg Brandl2010-08-021-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 83536,83546-83548,83550,83554-83555,83558,83563,83565,83571,83574-83575 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83536 | georg.brandl | 2010-08-02 19:49:25 +0200 (Mo, 02 Aug 2010) | 1 line #8578: mention danger of not incref'ing weak referenced object. ........ r83546 | georg.brandl | 2010-08-02 21:16:34 +0200 (Mo, 02 Aug 2010) | 1 line #7973: Fix distutils options spelling. ........ r83547 | georg.brandl | 2010-08-02 21:19:26 +0200 (Mo, 02 Aug 2010) | 1 line #7386: add example that shows that trailing path separators are stripped. ........ r83548 | georg.brandl | 2010-08-02 21:23:34 +0200 (Mo, 02 Aug 2010) | 1 line #8172: how does one use a property? ........ r83550 | georg.brandl | 2010-08-02 21:32:43 +0200 (Mo, 02 Aug 2010) | 1 line #9451: strengthen warning about __*__ special name usage. ........ r83554 | georg.brandl | 2010-08-02 21:43:05 +0200 (Mo, 02 Aug 2010) | 1 line #7280: note about nasmw.exe. ........ r83555 | georg.brandl | 2010-08-02 21:44:48 +0200 (Mo, 02 Aug 2010) | 1 line #8861: remove unused variable. ........ r83558 | georg.brandl | 2010-08-02 22:05:19 +0200 (Mo, 02 Aug 2010) | 1 line #8648: document UTF-7 codec functions. ........ r83563 | georg.brandl | 2010-08-02 22:21:21 +0200 (Mo, 02 Aug 2010) | 1 line #9037: add example how to raise custom exceptions from C code. ........ r83565 | georg.brandl | 2010-08-02 22:27:20 +0200 (Mo, 02 Aug 2010) | 1 line #9111: document that do_help() looks at docstrings. ........ r83571 | georg.brandl | 2010-08-02 22:44:34 +0200 (Mo, 02 Aug 2010) | 1 line Clarify that abs() is not a namespace. ........ r83574 | georg.brandl | 2010-08-02 22:47:56 +0200 (Mo, 02 Aug 2010) | 1 line #6867: epoll.register() returns None. ........ r83575 | georg.brandl | 2010-08-02 22:52:10 +0200 (Mo, 02 Aug 2010) | 1 line #9238: zipfile does handle archive comments. ........
* Make reference to Generic Attribute Management a hyperlink.R. David Murray2010-05-281-1/+3
|
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-33/+36
| | | | CObject to PyCapsule.
* Include structmember.h correctly.Georg Brandl2010-03-211-1/+1
|
* Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.Andrew M. Kuchling2010-02-221-6/+1
| | | | | | (I asked the BDFL first, and he approved removing it. The last actual bugfix to Tools/modulator was in 2001; since then all changes have been search-and-replace: string methods, whitespace fixes, etc.)
* Note in the intro to Extending... that ctypes can be a simpler, more ↵Brett Cannon2009-09-171-0/+7
| | | | portable solution than custom C code.
* builtin -> built-in.Georg Brandl2009-07-261-1/+1
|
* #6446: fix import_spam() function to use correct error and reference handling.Georg Brandl2009-07-111-9/+16
|
* Demote warnings to notices where appropriate, following the goal that as few ↵Georg Brandl2009-04-271-1/+1
| | | | | | "red box" warnings should clutter the docs as possible. Part 1: stuff that gets merged to Py3k.
* #5417: replace references to undocumented functions by ones to documented ↵Georg Brandl2009-03-311-12/+13
| | | | functions.
* Add section numbering to some of the larger subdocuments.Georg Brandl2009-03-281-0/+1
|
* Remove tabs from the documentation.Georg Brandl2009-01-031-16/+16
|
* Remove trailing whitespace.Georg Brandl2009-01-034-10/+10
|
* #4611: fix typo.Georg Brandl2008-12-151-1/+1
|
* Remove things specific to the old Macintosh, and spell "Mac OS X" consistently.Georg Brandl2008-09-131-4/+3
|
* #3711: .dll isn't a valid Python extension anymore.Georg Brandl2008-08-281-4/+8
|
* fix various doc typos #3320Benjamin Peterson2008-07-121-1/+1
|
* #2299: typos in newtypes.rst.Georg Brandl2008-03-161-3/+3
|
* Fix link.Georg Brandl2008-02-091-1/+1
|
* Adapt pydoc to new doc URLs.Georg Brandl2008-01-211-1/+1
|
* Some cleanup in the docs.Georg Brandl2007-12-294-45/+23
|
* Document PyEval_* functions from ceval.c.Georg Brandl2007-12-011-5/+18
| | | | Credits to Michael Sloan from GHOP.
* Add :term:s for descriptors.Georg Brandl2007-10-211-2/+2
|
* Backport from 3k: #1116: fix reference to old filename.Georg Brandl2007-09-061-1/+1
|
* Move the 2.6 reST doc tree in place.Georg Brandl2007-08-156-0/+3605