Commit graph

12594 commits

Author SHA1 Message Date
Benjamin Peterson
71e2d2e260 nonlocal isn't a 2.x topic 2013-03-23 10:09:24 -05:00
Raymond Hettinger
4507274139 Modernize unittest example 2013-03-22 07:17:38 -07:00
R David Murray
35893b7994 #16057: Clarify why the base method default is called in custom encoders.
Original patch by Kushal Das.
2013-03-17 22:06:18 -04:00
Terry Jan Reedy
271e56e887 Issue #17415: Trim trailing whitespace 2013-03-17 15:28:10 -04:00
Terry Jan Reedy
3e50fb3f69 Issue #17415: Clarify 'this' referent by moving containing sentence just after
the sentence referred to. Make other minor edits to improve flow.
2013-03-17 15:21:26 -04:00
Terry Jan Reedy
589cb111b5 Issue #17418: specify that buffer sizes are bytes. 2013-03-16 15:55:53 -04:00
Terry Jan Reedy
b1ed05c7a5 Issue #17398: document url argument of RobotFileParser 2013-03-15 16:49:22 -04:00
Terry Jan Reedy
0b2173a1ee Issue #17412: update 2.7 Doc/make.bat to also use sphinx-1.0.7. 2013-03-14 19:32:22 -04:00
Senthil Kumaran
69c66f9a43 #17307 - Example of HTTP PUT Request using httplib 2013-03-13 13:30:25 -07:00
Ezio Melotti
5e32424b49 #17402: avoid shadowing built-in map in mmap examples. Initial patch by Aman Shah. 2013-03-13 02:26:11 +02:00
Eli Bendersky
981c3bde8d Issue #11367: fix documentation of some find* methods in ElementTree 2013-03-12 06:08:04 -07:00
Terry Jan Reedy
6bf9b85859 Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/*
found by Serhiy Storchaka and Matthew Barnett
2013-03-11 17:09:58 -04:00
Raymond Hettinger
7ed6f7ead1 Classmethod example needs to inherit from object 2013-03-10 09:49:08 -07:00
Raymond Hettinger
8c5c3e3bb6 Issue #17351: Modernize the pure Python property() example. 2013-03-10 09:36:52 -07:00
Ezio Melotti
5f52246f75 #14489: fix wrong link. 2013-03-10 04:28:28 +02:00
Eli Bendersky
26e2faf57d Add warning in ctypes documentation for #16575 and #16576 2013-03-09 05:56:35 -08:00
Terry Jan Reedy
3d08f25acf Issue #17332: fix json doc typo /convered/converted/ found by Ernie Hershey. 2013-03-08 19:35:15 -05:00
Vinay Sajip
a7b584b68c Issue #17376: Clarified documentation for TimedRotatingFileHandler weekday rotation. 2013-03-08 23:22:22 +00:00
Eli Bendersky
e754636a5e Closing #17378: ctypes documentation fix.
Document that ctypes automatically applies byref() when argtypes declares
POINTER.
2013-03-08 05:34:58 -08:00
Eli Bendersky
82078bcfc3 Fix doc grammar and line width 2013-03-06 06:53:39 -08:00
Ezio Melotti
f5a9bc5fdd #17364: remove documentation for a function that does not exist. 2013-03-06 03:20:27 +02:00
Ezio Melotti
ff0deb0529 Fix markup in unittest doc. 2013-03-01 21:26:04 +02:00
Raymond Hettinger
dce969d2b0 The example regex should be a raw string. 2013-02-28 11:11:11 -08:00
Ezio Melotti
1fef1eb6e9 Add a link to the demo dir. 2013-02-28 17:55:17 +02:00
Ezio Melotti
79b2dbaf3f Fix markup in unittest docs. 2013-02-28 08:28:11 +02:00
Chris Jerdonek
2277b947bb Issue #16406: combine the doc pages for uploading and registering to PyPI. 2013-02-27 09:55:39 -08:00
Petri Lehtinen
e41a4634c9 Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior 2013-02-26 21:34:33 +02:00
Senthil Kumaran
b1bbc0b3dc Fix issue16932: Fix the urlparse example. Remote :port when scheme is not specified to demonstrate correct behavior 2013-02-26 01:02:14 -08:00
Petri Lehtinen
fead3c8cca Issue #16403: Document how distutils uses the maintainer field in PKG-INFO 2013-02-23 21:05:48 +01:00
Petri Lehtinen
2342784d28 Issue #16695: Document how glob handles filenames starting with a dot 2013-02-23 19:53:03 +01:00
Petri Lehtinen
0b785036ef Issue #8890: Stop advertising an insecure use of /tmp in docs 2013-02-23 19:24:31 +01:00
Ezio Melotti
6a959a1213 #15438: add a note to math.pow() that suggests using **/pow() for integers. Patch by Mark Dickinson. 2013-02-23 04:53:44 +02:00
Ezio Melotti
43b09d49b6 Fix the highlight in another example. 2013-02-22 07:53:23 +02:00
Ezio Melotti
986f71cb2d #17256: fix syntax highlight in embedding example. Patch by Kushal Das. 2013-02-22 07:38:11 +02:00
Ezio Melotti
ed5fba2ad9 #17035: use new style classes in classmethod/staticmethod examples. Patch by Berker Peksag. 2013-02-22 07:34:52 +02:00
Chris Jerdonek
13cee1696f Issue #17203: add long option names to unittest discovery docs. 2013-02-21 18:52:12 -08:00
Serhiy Storchaka
49d4022d7d Issue #17225: JSON decoder now counts columns in the first line starting
with 1, as in other lines.
2013-02-21 20:17:54 +02:00
Ezio Melotti
d5bdb1f140 #17265: fix highlight in template example. Initial patch by Berker Peksag. 2013-02-21 12:30:32 +02:00
Antoine Pitrou
f1575714ff Issue #17208: add a note about the termination behaviour of daemon threads. 2013-02-15 21:27:18 +01:00
Serhiy Storchaka
62e709c52b Issue #16686: Fixed a lot of bugs in audioop module.
* avgpp() and maxpp() no more crash on empty and 1-samples input fragment. They now work when peak-peak values are greater INT_MAX.
* ratecv() no more crashes on empty input fragment.
* Fixed an integer overflow in ratecv().
* Fixed an integer overflow in add() and bias() for 32-bit samples.
* reverse(), lin2lin() and ratecv() no more lose precision for 32-bit samples.
* max() and rms() no more returns negative result for 32-bit sample -0x80000000.
* minmax() now returns correct max value for 32-bit sample -0x80000000.
* avg(), mul(), tomono() and tostereo() now round negative result down and can return 32-bit sample -0x80000000.
* add() now can return 32-bit sample -0x80000000.
2013-02-09 11:10:30 +02:00
Gregory P. Smith
ec02217f4c whitespace fix 2013-02-07 22:18:21 -08:00
Gregory P. Smith
a26ec65d93 Issue #6972: fix the documentation mis applied patch. 2013-02-07 22:11:03 -08:00
Senthil Kumaran
785d1b1703 Fix Issue17069: Document getcode method in urllib.request.rst 2013-02-07 00:51:34 -08:00
Serhiy Storchaka
dc6dc4bc31 Fix a Cyrillic "C" inroduced into the docs by patch for issue #6972. 2013-02-02 13:27:02 +02:00
Ned Deily
7045f0579b Issue #15116: Remove references to appscript as it is no longer being
supported.
2013-02-02 00:14:44 -08:00
Gregory P. Smith
608cc451c7 Fixes Issue #6972: The zipfile module no longer overwrites files outside of
its destination path when extracting malicious zip files.
2013-02-01 11:40:18 -08:00
Ezio Melotti
139e445270 #16128: clarify that instances of user-defined classes compare equal with themselves. 2013-02-01 05:18:44 +02:00
Vinay Sajip
b322621a53 Added clarification to logging HOWTO. 2013-01-29 22:36:39 +00:00
Benjamin Peterson
8d15ca3cc6 fix long fixer docs (#4590) 2013-01-28 18:28:38 -05:00
Sandro Tosi
c19d7b6556 fix typo; thanks to Dmitry Northerner from docs@ 2013-01-27 00:22:33 +01:00