summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix synopsis.Georg Brandl2008-05-011-1/+1
|
* Fix typo in whatsnewBenjamin Peterson2008-04-301-1/+1
|
* #2727: clarify tp_iternext docs.Georg Brandl2008-04-301-5/+6
|
* #2719: backport next() from 3k.Georg Brandl2008-04-301-0/+9
|
* Update command line usage documentation to reflect 2.6 changes (also ↵Nick Coghlan2008-04-301-27/+62
| | | | includes some minor cleanups). Addresses TODO list issue 2258
* Strip down SSL docs; I'm not managing to get test programs working, so I'll ↵Andrew M. Kuchling2008-04-291-8/+3
| | | | just give a minimal description
* Fix markup.Georg Brandl2008-04-281-1/+1
|
* Wrap some long lines.Skip Montanaro2008-04-281-9/+12
|
* Correct documentation to match implementation: "Class" instead ofSkip Montanaro2008-04-281-45/+46
| | | | | | "class_descriptor", "Function" instead of "function_descriptor". Note default path value for readmodule*. Wrap some long paragraphs. Don't mention 'inpackage' which isn't part of the public API.
* Wrap some long paragraphs and include the default values for optionalSkip Montanaro2008-04-271-88/+96
| | | | function parameters.
* minor wording changes, rewrap a few linesSkip Montanaro2008-04-271-12/+13
|
* Add OpenSearch and a Python logo to the HTML output.Georg Brandl2008-04-274-0/+25
|
* #2700 Document PyNumber_ToBaseBenjamin Peterson2008-04-271-0/+11
|
* Use correct XHTML tags.Georg Brandl2008-04-271-16/+16
|
* #2677: add note that not all functions may accept keyword args.Georg Brandl2008-04-271-0/+8
|
* Added PyErr_WarnPy3k function. (issue 2671) I will be converting current ↵Benjamin Peterson2008-04-271-0/+8
| | | | Py3k warnings to the use of this function soon.
* #2691: document PyLong (s)size_t APIs, patch by Alexander Belopolsky.Georg Brandl2008-04-261-1/+31
|
* #2668: nit in apply() docs.Georg Brandl2008-04-261-1/+1
|
* Add from_buffer and from_buffer_copy class methods to ctypes types.Thomas Heller2008-04-251-0/+22
|
* reformat some documentation of classes so methods and attributes are under ↵Benjamin Peterson2008-04-2542-3573/+3701
| | | | the class directive
* #2673 Fix example typo in optparse docsBenjamin Peterson2008-04-231-1/+1
|
* syntax fixupGregory P. Smith2008-04-231-3/+3
|
* Factor in documentation changes from issue 1753732.Skip Montanaro2008-04-221-0/+13
|
* Major improvements:Gregory P. Smith2008-04-221-2/+18
| | | | | | | | | * Default to using /dev/tty for the password prompt and input before falling back to sys.stdin and sys.stderr. * Use sys.stderr instead of sys.stdout. * print the 'password may be echoed' warning to stream used to display the prompt rather than always sys.stderr. * warn() with GetPassWarning when input may be echoed.
* Various io doc updatesBenjamin Peterson2008-04-221-68/+63
|
* Fix Sphinx warningsBenjamin Peterson2008-04-211-11/+11
|
* Windows x64 also falls under VER_PLATFORM_WIN32_NT.Jeroen Ruigrok van der Werven2008-04-211-11/+11
|
* capitalizationDavid Goodger2008-04-211-2/+2
|
* corrections ("reStructuredText" is one word)David Goodger2008-04-211-4/+4
|
* Moved Mark SummerField's io doc changes back to the trunk. (He will edit ↵Benjamin Peterson2008-04-211-117/+137
| | | | here in the future.)
* Add various itemsAndrew M. Kuchling2008-04-211-1/+46
|
* Wording changesAndrew M. Kuchling2008-04-211-2/+2
|
* Markup fixAndrew M. Kuchling2008-04-211-1/+1
|
* Move description of math module changes; various edits to description of ↵Andrew M. Kuchling2008-04-201-48/+62
| | | | cmath changes
* Move asinh documentation to the proper place.Mark Dickinson2008-04-191-17/+18
| | | | | Remove meaningless 'in radians' from inverse hyperbolic functions.
* Correct documentation for math.pow;Mark Dickinson2008-04-191-4/+8
| | | | | | 0**nan is nan, not 0. (But nan**0 and 1**nan are 1.) Also fix minor typo: 'quite NaN' -> 'quiet NaN'
* Update template for newest Sphinx.Georg Brandl2008-04-192-3/+4
|
* Document updates to math and cmath modules.Mark Dickinson2008-04-191-0/+51
|
* Complete documentation for errors argument of io's open and TextIOWrapperBenjamin Peterson2008-04-191-9/+14
|
* Copy io documentation back from py3k branch so changes can be merged into it.Benjamin Peterson2008-04-191-25/+30
|
* :func: et al. should *not* include the parens.Georg Brandl2008-04-191-3/+3
|
* #2631: clarify IMPORT_NAME semantics.Georg Brandl2008-04-191-3/+5
|
* #2633: clarify meaning of env parameter.Georg Brandl2008-04-191-2/+3
|
* #2634: clarify meaning of env parameter to spawn/exec*e.Georg Brandl2008-04-191-2/+4
|
* #2369: clarify that copyfile() doesn't take a target directory.Georg Brandl2008-04-191-9/+11
|
* Fix-up docs for revision 62386.Georg Brandl2008-04-191-2/+8
|
* Added kill, terminate and send_signal to subprocess.PopenChristian Heimes2008-04-191-0/+23
| | | | The bits and pieces for the Windows side were already in place. The POSIX side is trivial (as usual) and uses os.kill().
* I finally got the time to update and merge Mark's and my trunk-math branch. ↵Christian Heimes2008-04-182-15/+152
| | | | | | The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. The patch also adds acosh, asinh, atanh, log1p and copysign to all platforms. Finally it fixes differences between platforms like different results or exceptions for edge cases. Have fun :)
* Rewrite introductory section, and remove old section. (It was already ↵Andrew M. Kuchling2008-04-181-62/+29
| | | | commented-out, but why keep it?)
* Remove personal note from Jim Roskind; it no longer applies, and theAndrew M. Kuchling2008-04-181-9/+0
| | | | | | e-mail address is for a previous employer. Can we move the big long copyright statement into a sidebar or something?