Benjamin Peterson
f3d0ce1502
mention -n
2008-10-19 19:39:16 +00:00
Georg Brandl
92b70bcc6e
Fix duplicate word.
2008-10-17 21:41:49 +00:00
Benjamin Peterson
c2f144079f
clarify CALL_FUNCTION #4141
2008-10-17 20:01:01 +00:00
Georg Brandl
19cc944e45
part of #4012 : kill off old name "processing".
2008-10-16 21:36:39 +00:00
Georg Brandl
0a6b28ae6a
#4131 : FF3 doesn't write cookies.txt files.
2008-10-16 21:20:15 +00:00
Benjamin Peterson
5c4e006367
document that deque indexing is O(n) #4123
2008-10-16 18:52:14 +00:00
Benjamin Peterson
1fb84519b1
add a much requested newline
2008-10-15 21:58:46 +00:00
Benjamin Peterson
0ecbccad2d
document how to disable fixers
2008-10-13 21:51:40 +00:00
Benjamin Peterson
83ca0a6511
talk about how you can unzip with zip
2008-10-10 20:51:37 +00:00
Benjamin Peterson
cae5848f12
fix a small typo
2008-10-10 20:38:49 +00:00
Armin Rigo
1178e02c94
Typo: "ThreadError" is the name in the C source.
2008-10-10 08:40:44 +00:00
Georg Brandl
26497d91ca
#4059 : patch up some sqlite docs.
2008-10-08 17:20:20 +00:00
Benjamin Peterson
f9db5968cc
fix typo
2008-10-04 22:15:31 +00:00
Georg Brandl
34211e91ef
#4041 : don't refer to removed and outdated modules.
2008-10-04 18:26:01 +00:00
Gregory P. Smith
0806749e63
Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs when
...
calling fork() from a child thread. This disables that unit test (with a note
printed to stderr) on those platforms.
A caveat about buggy platforms is added to the os.fork documentation.
2008-09-30 20:41:13 +00:00
Andrew M. Kuchling
cad8da8abd
Markup fixes. (optparse.rst probably needs an entire revision pass.)
2008-09-30 13:01:46 +00:00
Andrew M. Kuchling
83b3910e61
Edits, and add markup
2008-09-30 12:31:07 +00:00
Jesse Noller
37040cdace
issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick Coghlan, Damien Miller
2008-09-30 00:15:45 +00:00
Martin v. Löwis
e563aa4383
Issue #3965 : Allow repeated calls to turtle.Screen, by making it a
...
true singleton object.
Reviewed by Gregor Lingl.
2008-09-29 22:09:07 +00:00
Benjamin Peterson
b51f81def4
note the 2to3 -d could be useful for other refactoring
2008-09-28 01:53:29 +00:00
Benjamin Peterson
4fad6fa560
better grammar
2008-09-28 01:51:36 +00:00
Andrew M. Kuchling
7a4a93b8e9
#1415508 : Document two functions
2008-09-28 01:08:47 +00:00
Andrew M. Kuchling
ac77166e90
#1579477 : mention necessity to flush output before exec'ing
2008-09-28 00:15:27 +00:00
Andrew M. Kuchling
e6896050a3
#3510 : future-proof text
2008-09-27 22:54:08 +00:00
Benjamin Peterson
7f8f6605e2
2to3's api should be considered unstable
2008-09-27 16:23:55 +00:00
Andrew M. Kuchling
8798c90df2
Improve wording
2008-09-24 17:27:55 +00:00
Georg Brandl
1379ae02e3
Indentation normalization.
2008-09-24 09:47:55 +00:00
Benjamin Peterson
3e876fd146
clean up docs for platform's linux_distribution and dist functions
2008-09-22 22:13:29 +00:00
Georg Brandl
afeea0711a
#3918 : note that uniform() args can be swapped.
2008-09-21 08:03:21 +00:00
Georg Brandl
4517323df8
#3912 : document default for *places* arg.
2008-09-21 07:15:59 +00:00
Georg Brandl
2f3bd8364a
#3852 : fix some select.kqueue and kevent docs.
2008-09-21 07:14:44 +00:00
Raymond Hettinger
3134f14b1a
Improve docs for super().
2008-09-19 08:07:48 +00:00
Josiah Carlson
5aaa3e579d
Fix for documentation bug. Fixes issue 3904.
2008-09-19 02:07:22 +00:00
Benjamin Peterson
b8966ab753
document compileall command flags
2008-09-17 21:54:56 +00:00
Skip Montanaro
b40890db07
usage
2008-09-17 11:50:36 +00:00
Benjamin Peterson
6be425c85f
be less wordy
2008-09-16 21:20:28 +00:00
Benjamin Peterson
881c4878cb
clarify that radix for int is not 'guessed'
2008-09-14 16:02:22 +00:00
Georg Brandl
9af9498c6e
Remove things specific to the old Macintosh, and spell "Mac OS X" consistently.
2008-09-13 17:41:16 +00:00
Andrew M. Kuchling
09e80938b0
#3288 : Document as_integer_ratio
2008-09-13 02:11:51 +00:00
Andrew M. Kuchling
bf64c0411f
Remove extra 'the'; the following title includes it
2008-09-13 02:09:15 +00:00
Benjamin Peterson
b535d32952
fix typo
2008-09-11 22:04:02 +00:00
Nick Coghlan
d2e0938362
Issue #3781 : Final cleanup of warnings.catch_warnings and its usage in the test suite. Closes issue w.r.t. 2.6 (R: Brett Cannon)
2008-09-11 12:11:06 +00:00
Martin v. Löwis
24329ba176
Issue #3811 : The Unicode database was updated to 5.1.
...
Reviewed by Fredrik Lundh and Marc-Andre Lemburg.
2008-09-10 13:38:12 +00:00
Brett Cannon
672237dc6c
warnings.catch_warnings() now returns a list or None instead of the custom
...
WarningsRecorder object. This makes the API simpler to use as no special object
must be learned.
Closes issue 3781.
Review by Benjamin Peterson.
2008-09-09 00:49:16 +00:00
Bill Janssen
61c001a939
incorporate fixes from issue 3162; SSL doc patch
2008-09-08 16:37:24 +00:00
Mark Summerfield
ffde3cfcb1
Added xrefs to each other.
2008-09-08 14:45:37 +00:00
Andrew M. Kuchling
fe38e44123
#1317 : describe the does_esmtp, ehlo_resp, esmtp_features, and helo_resp attributes
2008-09-06 21:26:02 +00:00
Andrew M. Kuchling
cd52023e6f
#3669 from Robert Lehmann: simplify use of iterator in example
2008-09-06 20:28:01 +00:00
Benjamin Peterson
6ac7d7c80b
#1638033 : add support for httponly on Cookie.Morsel
...
Reviewer: Benjamin
2008-09-06 19:28:11 +00:00
Andrew M. Kuchling
810f807b1b
#3040 : include 'dest' argument in example; trim some trailing whitespace
2008-09-06 13:04:02 +00:00