summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Mention -J, -XAndrew M. Kuchling2008-04-131-0/+14
|
* Re-implement the 'warnings' module in C. This allows for usage of theBrett Cannon2008-04-121-5/+13
| | | | | | | | | 'warnings' code in places where it was previously not possible (e.g., the parser). It could also potentially lead to a speed-up in interpreter start-up if the C version of the code (_warnings) is imported over the use of the Python version in key places. Closes issue #1631171.
* Don't offend snake lovers.Georg Brandl2008-04-121-1/+1
|
* #2615: small consistency update by Jeroen Ruigrok van der Werven.Georg Brandl2008-04-121-4/+4
|
* Use absolute path in sys.path.Georg Brandl2008-04-121-1/+1
|
* Use issue directiveAndrew M. Kuchling2008-04-101-181/+106
|
* Add punctuationAndrew M. Kuchling2008-04-101-1/+1
|
* Remove forward-looking statementAndrew M. Kuchling2008-04-101-3/+3
|
* Try out the new issue role. Thanks, Georg!Andrew M. Kuchling2008-04-091-1/+1
|
* Add :issue: directive for easy linking to bugs.python.org.Georg Brandl2008-04-092-1/+25
|
* Add itemsAndrew M. Kuchling2008-04-091-3/+13
|
* Issue 2408: remove the _types moduleAmaury Forgeot d'Arc2008-04-081-8/+10
| | | | | | | | | It was only used as a helper in types.py to access types (GetSetDescriptorType and MemberDescriptorType), when they can easily be obtained with python code. These expressions even work with Jython. I don't know what the future of the types module is; (cf. discussion in http://bugs.python.org/issue1605 ) at least this change makes it simpler.
* Add itemsAndrew M. Kuchling2008-04-081-2/+65
|
* Typo fixAndrew M. Kuchling2008-04-071-2/+2
|
* Write PEP 3127 section; add itemsAndrew M. Kuchling2008-04-071-8/+82
|
* #2525: update timezone info examples in the docs.Georg Brandl2008-04-071-8/+38
|
* changed "2500 components" to "several thousand" since the number keepsMark Summerfield2008-04-071-2/+3
| | | | growning:-)
* correct heading underline for new "Cross-compiling on Windows" sectionMark Hammond2008-04-071-1/+1
|
* Issue #2513: enable 64bit cross compilation on windows.Mark Hammond2008-04-071-0/+36
|
* Make file objects as thread safe as the underlying libc FILE* implementation.Gregory P. Smith2008-04-061-1/+33
| | | | | | | | | | | close() will now raise an IOError if any operations on the file object are currently in progress in other threads. Most code was written by Antoine Pitrou (pitrou). Additional testing, documentation and test suite cleanup done by me (gregory.p.smith). Fixes issue 815646 and 595601 (as well as many other bugs and references to this problem dating back to the dawn of Python).
* Write PEP 3119 sectionAndrew M. Kuchling2008-04-051-18/+119
|
* Mention that the tuple returned by __reduce__ is pickled as normal.Georg Brandl2008-04-051-2/+3
|
* Markup fixes; write PEP 3118 sectionAndrew M. Kuchling2008-04-051-19/+61
|
* Various editsAndrew M. Kuchling2008-04-051-16/+45
|
* Markup fix; explain what interval timers do; typo fixAndrew M. Kuchling2008-04-051-2/+8
|
* Minor editsAndrew M. Kuchling2008-04-051-3/+3
|
* Added updates with respect to recent changes to TimedRotatingFileHandler.Vinay Sajip2008-04-021-4/+5
|
* PyErr_Warn is decrepated. Use PyErr_WarnExBenjamin Peterson2008-03-311-1/+1
|
* #2505: allow easier creation of AST nodes.Georg Brandl2008-03-301-2/+25
|
* Documented the lastrowid attribute.Gerhard Häring2008-03-291-0/+6
|
* Fix capitalization.Georg Brandl2008-03-291-1/+1
|
* Be explicit about what efficient means.Raymond Hettinger2008-03-291-2/+2
|
* Brought documentation for sqlite3 module up-to-date. Fixed Issue1625205 whichGerhard Häring2008-03-292-5/+59
| | | | complained about commit, rollback and close not being documented.
* #2502: add example how to do enum types with named tuples.Georg Brandl2008-03-281-0/+10
|
* Don't use the confusing term "set membership".Georg Brandl2008-03-281-8/+8
|
* Phase out has_key usage in the tutorial; correct docs for PyMapping_HasKey*.Georg Brandl2008-03-283-10/+7
|
* Patch #1810 by Thomas Lee, reviewed by myself:Georg Brandl2008-03-284-30/+37
| | | | | allow compiling Python AST objects into code objects in compile().
* Accept patch issue2426 by Paul Kippes (kippesp).Gregory P. Smith2008-03-281-0/+21
| | | | Adds sqlite3.Connection.iterdump to allow dumping of databases.
* #2406: add examples to gzip docs.Georg Brandl2008-03-281-8/+41
|
* #2248: return result of QUIT from quit().Georg Brandl2008-03-271-1/+6
|
* Typo: "objects reference count" -> "object's reference count"Mark Dickinson2008-03-261-1/+1
|
* Add an example for an RFC 822 continuation.Georg Brandl2008-03-261-6/+8
|
* Add various itemsAndrew M. Kuchling2008-03-261-17/+78
|
* #2476: document that %default feature is new in 2.4.Georg Brandl2008-03-251-4/+5
|
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-1/+1
| | | | EOL 80 limit and supply more alternatives in warning messages.
* #868845: document <...> reprs.Georg Brandl2008-03-251-5/+9
|
* Patch #2240: Implement signal.setitimer and signal.getitimer.Martin v. Löwis2008-03-241-7/+60
|
* #1700821: add a note to audioop docs about signedness of sample formats.Georg Brandl2008-03-241-0/+12
|
* Tighten documentation for Random.triangular.Raymond Hettinger2008-03-241-5/+5
|
* Adopt Nick's suggestion for useful default arguments.Raymond Hettinger2008-03-231-1/+6
| | | | Clean-up floating point issues by adding true division and float constants.