Antoine Pitrou
cfad97b3ca
Fix the description of PIPE_BUF
2011-01-25 17:24:57 +00:00
Antoine Pitrou
da7be3e7b7
Fix the doc for PIPE_BUF
2011-01-25 16:28:44 +00:00
Raymond Hettinger
902f320232
Typo.
2011-01-25 08:01:01 +00:00
Raymond Hettinger
da4a05de7e
Add entries for select and site.
2011-01-25 07:46:07 +00:00
Raymond Hettinger
2f707c98fb
Add math.erfc and turtledemo.
2011-01-25 06:58:01 +00:00
Raymond Hettinger
f9b8a19d75
Typo.
2011-01-25 05:53:27 +00:00
Raymond Hettinger
2c63906283
Nits.
2011-01-25 02:38:59 +00:00
Raymond Hettinger
a4cfb4292a
Add entry for the math module.
2011-01-25 02:35:58 +00:00
Brett Cannon
ad81f2bee6
Ignore the gdb.py file under OS X.
2011-01-25 00:56:18 +00:00
Benjamin Peterson
d454249a36
another pretty crasher served up by pypy
2011-01-25 00:00:28 +00:00
Raymond Hettinger
f4f0e6c7a7
Add entry for io.BytesIO.getbuffer().
2011-01-24 22:14:42 +00:00
Ned Deily
122539e287
#10974 : IDLE no longer crashes if its recent files list includes files
...
with non-ASCII characters in their path names.
(with approval of release manager for 3.2rc2)
2011-01-24 21:46:44 +00:00
Terry Reedy
feac624827
Issue #11000 ast.parse parses source, not just expressions.
2011-01-24 21:36:03 +00:00
Steven Bethard
b02701101b
Issue #9509 : make argarse properly handle IOErrors raised by argparse.FileType. Approved by Georg in the tracker.
2011-01-24 21:02:50 +00:00
Terry Reedy
2a6ac15f26
Update last tix code example for 3.x, as already done for previous examples.
2011-01-24 20:48:40 +00:00
Georg Brandl
009a6bd675
Fix label syntax.
2011-01-24 19:59:08 +00:00
Georg Brandl
8e490de616
Typo fix.
2011-01-24 19:53:18 +00:00
R. David Murray
7b1aae9a52
#10960 : fix 'stat' links, link to lstat from stat, general tidy of stat doc.
...
Original patch by Michal Nowikowski, with some additions and wording
fixes by me.
I changed the wording from 'Performs a stat system call' to 'Performs
the equivalent of a stat system call', since on Windows there are no
stat/lstat system calls involved. I also extended Michal's breakout
of the attributes into a list to the other paragraphs, and rearranged
the order of the paragraphs in the 'stat' docs to make it flow
better and put it in what I think is a more logical/useful order.
2011-01-24 19:34:58 +00:00
Raymond Hettinger
a80ab10bc2
Typos.
2011-01-24 18:19:01 +00:00
Raymond Hettinger
ead4975b9f
Missing source links.
2011-01-24 16:28:06 +00:00
Raymond Hettinger
399bf7be41
Fix markup and add todo.
2011-01-24 10:11:12 +00:00
Raymond Hettinger
e7dfe74ce3
Add entry for hash_info().
2011-01-24 09:17:24 +00:00
Raymond Hettinger
9a236b0235
Add section for urllib.parse.
2011-01-24 09:01:27 +00:00
Raymond Hettinger
a3b7a14d16
Add entry for the html module.
2011-01-24 05:26:00 +00:00
Raymond Hettinger
d0d59b138d
Add entry for hashlib and expand the GC entry.
2011-01-24 05:07:13 +00:00
Raymond Hettinger
bf1d2bc7cb
Make the type consistent for hashlib algorithm constants. (Reviewed by Benjamin).
2011-01-24 04:52:27 +00:00
Raymond Hettinger
acff595a4e
Add entries for dis, dbm, and ctypes.
2011-01-24 01:51:49 +00:00
Raymond Hettinger
50307b684d
Add entries for array, asyncore, csv, compileall, and ast.
2011-01-24 01:18:30 +00:00
Brett Cannon
c3e8867a41
Skip a recursion depth check test when running under CPython and have a trace
...
function set. Otherwise a Python fatal error about hitting an unrecoverable
recursion depth gets triggered.
Closes issue #10985 . Code review by Georg Brandl.
2011-01-23 23:06:05 +00:00
Raymond Hettinger
6ef18f4fa3
Fix typo.
2011-01-23 21:33:36 +00:00
Raymond Hettinger
971f48320b
minor clean-up.
2011-01-23 21:32:18 +00:00
Raymond Hettinger
cbc903bc7e
Add tracker references.
2011-01-23 21:13:27 +00:00
Raymond Hettinger
98b140c196
Add entry for reprlib.
2011-01-23 21:05:46 +00:00
Antoine Pitrou
e6d4c5bab8
Issue #10987 : Fix the recursion limit handling in the _pickle module.
2011-01-23 17:12:25 +00:00
Raymond Hettinger
0929b1fc70
Add entry for shutil's archiving operations.
2011-01-23 11:29:08 +00:00
Victor Stinner
f2e439fd8e
Issue #10955 : Fix typo in NEWS, cp497 => cp437
2011-01-23 00:11:58 +00:00
Georg Brandl
c7c199f907
#10983 : fix several bugs in the _tunnel implementation that seem to have missed while porting between branches. A unittest is needed!
2011-01-22 22:06:24 +00:00
Armin Ronacher
59531287fd
To match the behaviour of HTTP server, the HTTP client library now also encodes
...
headers with iso-8859-1 (latin1) encoding. It was already doing that for
incoming headers which makes this behaviour now consistent in both incoming and
outgoing direction.
2011-01-22 13:44:22 +00:00
Armin Ronacher
8d96d77f9a
Issue #10980 : encode headers with latin1 instead of ASCII in the HTTP server.
...
This makes the implementation of PEP 3333 compliant servers on top of
BaseHTTPServer possible.
2011-01-22 13:13:05 +00:00
Victor Stinner
137e0f0a22
Issue #10955 : fix NEWS entry
2011-01-22 10:33:01 +00:00
Victor Stinner
4ee65a9685
Issue #10955 : zipimport uses ASCII at bootstrap
...
zipimport uses ASCII encoding instead of cp497 to decode filenames, at
bootstrap, if the codec registry is not ready yet. It is still possible to have
non-ASCII filenames using the Unicode flag (UTF-8 encoding) for file entries in
the ZIP file.
2011-01-22 10:30:29 +00:00
Vinay Sajip
01241d6c35
Issue #10949 : Improved robustness of rotating file handlers.
2011-01-21 23:35:57 +00:00
Antoine Pitrou
00d650baaa
Fix JSON docs about loads() accepting only str objects, not bytes.
2011-01-21 21:37:32 +00:00
Raymond Hettinger
2e042d3dc2
Use a Latin-1 example that won't break the LaTeX PDF build.
2011-01-21 09:18:19 +00:00
Raymond Hettinger
7a168d96dd
Add example for __wrapped__.
2011-01-21 04:59:00 +00:00
Raymond Hettinger
f1dae31ea6
Clarify what changed with respect to date ranges and two-digit years.
2011-01-21 03:00:00 +00:00
Antoine Pitrou
305bc9e0e8
Issue #10955 : Fix a potential crash when trying to mmap() a file past its
...
length. Initial patch by Ross Lagerwall.
This fixes a regression introduced by r88022.
2011-01-20 21:07:24 +00:00
Alexander Belopolsky
9ee94dec18
Corrected the entry about new year range in the time module.
2011-01-20 19:51:31 +00:00
Brett Cannon
ec89d35c7f
Move developers.txt to the devguide.
2011-01-20 19:42:08 +00:00
Brett Cannon
c0729bfe24
Update Misc/README.
2011-01-20 19:36:12 +00:00