Andrew M. Kuchling
c157c9c277
Try out the new issue role. Thanks, Georg!
2008-04-09 22:28:43 +00:00
Georg Brandl
c305192196
Add :issue: directive for easy linking to bugs.python.org.
2008-04-09 17:58:56 +00:00
Andrew M. Kuchling
f68b55327c
Add items
2008-04-09 01:08:32 +00:00
Amaury Forgeot d'Arc
7adc776ea6
Issue 2408: remove the _types module
...
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.
2008-04-08 22:07:05 +00:00
Andrew M. Kuchling
abf8e015c2
Add items
2008-04-08 21:22:53 +00:00
Andrew M. Kuchling
5b1070a32b
Typo fix
2008-04-07 23:57:21 +00:00
Andrew M. Kuchling
34be7cec31
Write PEP 3127 section; add items
2008-04-07 23:57:07 +00:00
Georg Brandl
4a1672368d
#2525 : update timezone info examples in the docs.
2008-04-07 18:51:59 +00:00
Mark Summerfield
528576031d
changed "2500 components" to "several thousand" since the number keeps
...
growning:-)
2008-04-07 07:39:23 +00:00
Mark Hammond
295814e463
correct heading underline for new "Cross-compiling on Windows" section
2008-04-07 01:59:40 +00:00
Mark Hammond
495cf99aaf
Issue #2513 : enable 64bit cross compilation on windows.
2008-04-07 01:53:39 +00:00
Gregory P. Smith
aa63d0d4af
Make file objects as thread safe as the underlying libc FILE* implementation.
...
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).
2008-04-06 23:11:17 +00:00
Andrew M. Kuchling
2185241a63
Write PEP 3119 section
2008-04-05 18:15:30 +00:00
Georg Brandl
3b1202dfe8
Mention that the tuple returned by __reduce__ is pickled as normal.
2008-04-05 17:45:58 +00:00
Andrew M. Kuchling
217057f098
Markup fixes; write PEP 3118 section
2008-04-05 15:57:46 +00:00
Andrew M. Kuchling
b2ff8a7b0d
Various edits
2008-04-05 03:38:39 +00:00
Andrew M. Kuchling
1f2af8c6e4
Markup fix; explain what interval timers do; typo fix
2008-04-05 02:47:07 +00:00
Andrew M. Kuchling
9ff4aea24c
Minor edits
2008-04-05 02:42:20 +00:00
Vinay Sajip
89a01cd44b
Added updates with respect to recent changes to TimedRotatingFileHandler.
2008-04-02 21:17:25 +00:00
Benjamin Peterson
092a1f7ad7
PyErr_Warn is decrepated. Use PyErr_WarnEx
2008-03-31 21:57:13 +00:00
Georg Brandl
c52ed59473
#2505 : allow easier creation of AST nodes.
2008-03-30 07:01:47 +00:00
Gerhard Häring
c15317efcd
Documented the lastrowid attribute.
2008-03-29 19:11:52 +00:00
Georg Brandl
0069d85ba9
Fix capitalization.
2008-03-29 11:46:18 +00:00
Raymond Hettinger
594b76b7eb
Be explicit about what efficient means.
2008-03-29 10:42:07 +00:00
Gerhard Häring
4130930b4c
Brought documentation for sqlite3 module up-to-date. Fixed Issue1625205 which
...
complained about commit, rollback and close not being documented.
2008-03-29 01:27:37 +00:00
Georg Brandl
d289ea6df9
#2502 : add example how to do enum types with named tuples.
2008-03-28 12:58:26 +00:00
Georg Brandl
489343e948
Don't use the confusing term "set membership".
2008-03-28 12:24:51 +00:00
Georg Brandl
8ca6c84b6f
Phase out has_key usage in the tutorial; correct docs for PyMapping_HasKey*.
2008-03-28 12:22:12 +00:00
Georg Brandl
fc8eef3c78
Patch #1810 by Thomas Lee, reviewed by myself:
...
allow compiling Python AST objects into code objects
in compile().
2008-03-28 12:11:56 +00:00
Gregory P. Smith
b9803421d2
Accept patch issue2426 by Paul Kippes (kippesp).
...
Adds sqlite3.Connection.iterdump to allow dumping of databases.
2008-03-28 08:32:09 +00:00
Georg Brandl
621cd26253
#2406 : add examples to gzip docs.
2008-03-28 08:06:56 +00:00
Georg Brandl
deaf2cafbd
#2248 : return result of QUIT from quit().
2008-03-27 13:27:31 +00:00
Mark Dickinson
0cb3e86c47
Typo: "objects reference count" -> "object's reference count"
2008-03-26 21:41:36 +00:00
Georg Brandl
27f43740b1
Add an example for an RFC 822 continuation.
2008-03-26 09:32:46 +00:00
Andrew M. Kuchling
7c29aaee88
Add various items
2008-03-26 00:30:02 +00:00
Georg Brandl
799b372f31
#2476 : document that %default feature is new in 2.4.
2008-03-25 08:39:10 +00:00
Georg Brandl
d5b635f196
Make Py3k warnings consistent w.r.t. punctuation; also respect the
...
EOL 80 limit and supply more alternatives in warning messages.
2008-03-25 08:29:14 +00:00
Georg Brandl
18f1914a02
#868845 : document <...> reprs.
2008-03-25 07:20:15 +00:00
Martin v. Löwis
aef18b1c67
Patch #2240 : Implement signal.setitimer and signal.getitimer.
2008-03-24 13:31:16 +00:00
Georg Brandl
9bdead0aed
#1700821 : add a note to audioop docs about signedness of sample formats.
2008-03-24 09:34:34 +00:00
Raymond Hettinger
d145240f9a
Tighten documentation for Random.triangular.
2008-03-24 06:07:49 +00:00
Raymond Hettinger
c4f7bab0a0
Adopt Nick's suggestion for useful default arguments.
...
Clean-up floating point issues by adding true division and float constants.
2008-03-23 19:37:53 +00:00
Raymond Hettinger
bbc50eafe5
Issue 1681432: Add triangular distribution the random module.
2008-03-23 13:32:32 +00:00
Georg Brandl
61854332b9
Make the doctests presentation-friendlier.
2008-03-23 08:05:30 +00:00
Raymond Hettinger
e70bb8d6f2
Simplify demo code.
2008-03-23 00:55:46 +00:00
Georg Brandl
e8f1b00372
Enable doctest running for several other documents.
...
We have now over 640 doctests that are run with "make doctest".
2008-03-22 22:04:10 +00:00
Georg Brandl
7a45ab826e
Enable doctests in functions.rst. Already found two errors :)
2008-03-22 21:38:33 +00:00
Georg Brandl
4f0f34f131
Test doctests in operator docs.
2008-03-22 21:26:44 +00:00
Georg Brandl
3f04303ba4
Test doctests in datetime docs.
2008-03-22 21:21:57 +00:00
Georg Brandl
4c8bbe69e5
Make collections' doctests executable.
...
(The <BLANKLINE>s will be stripped from presentation output.)
2008-03-22 21:06:20 +00:00