Ezio Melotti
|
da9eeae48e
|
#11963: avoid printing messages in test_parser. Initial patch by Éric Araujo.
|
2013-03-09 22:17:33 +02:00 |
Eli Bendersky
|
26e2faf57d
|
Add warning in ctypes documentation for #16575 and #16576
|
2013-03-09 05:56:35 -08:00 |
Raymond Hettinger
|
9f7e247a88
|
Issue #17375: Add docstrings to the threading module.
|
2013-03-08 21:02:13 -07: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 |
Senthil Kumaran
|
6234cc0098
|
Reverting the changeset c31d700dea8b made for Issue #12921
|
2013-03-05 02:24:03 -08:00 |
Senthil Kumaran
|
c74e764c21
|
Fix Issue #12921: BaseHTTPServer's send_error should send the correct error
response message when send_error includes a message in addition to error
status. Patch contributed by Karl.
|
2013-03-05 01:21:13 -08:00 |
Raymond Hettinger
|
757408a2f3
|
merge
|
2013-03-05 02:16:45 -05:00 |
Raymond Hettinger
|
3e6aafe209
|
Issue #16098: Update heapq.nsmallest to use the same algorithm as nlargest.
This removes the dependency on bisect and it bring the pure Python code
in-sync with the C code.
|
2013-03-05 02:15:01 -05:00 |
Ned Deily
|
eec152d217
|
Issue #16848: python-config now returns proper --ldflags values for OS X
framework builds.
|
2013-03-04 14:31:04 -08:00 |
Antoine Pitrou
|
49e4dfeec8
|
Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently.
|
2013-03-04 20:30:01 +01:00 |
Ezio Melotti
|
a84ecc649b
|
#17346: make sure pickle tests are run against all protocols.
|
2013-03-04 15:23:12 +02:00 |
Mark Dickinson
|
7cac1c25a1
|
Issue #16445: Fix potential segmentation fault when deleting an exception message.
|
2013-03-03 11:13:34 +00:00 |
Ezio Melotti
|
ff0deb0529
|
Fix markup in unittest doc.
|
2013-03-01 21:26:04 +02:00 |
Ezio Melotti
|
c86e866b98
|
#17315: unlink a file that test_posixpath was leaving around.
|
2013-03-01 20:56:13 +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 |
Richard Oudkerk
|
ba48264bce
|
Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.
|
2013-02-26 12:37:07 +00: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 |
Serhiy Storchaka
|
d36d4e0d2b
|
Issue #13555: Fix an integer overflow check.
|
2013-02-26 10:07:36 +02:00 |
Serhiy Storchaka
|
93bfe7d860
|
Issue #1470548: Do not buffer XMLGenerator output.
Add test for fragment producing with XMLGenerator.
|
2013-02-25 13:31:29 +02:00 |
R David Murray
|
5b2cf5e651
|
#17275: Fix class name in init errors in C bufferedio classes.
This fixes an apparent copy-and-paste error.
Original patch by Manuel Jacob.
|
2013-02-23 22:11:21 -05:00 |
Petri Lehtinen
|
f794bde17d
|
Revert "Issue #16121: Fix line number accounting in shlex"
|
2013-02-23 23:05:54 +01:00 |
Petri Lehtinen
|
43072780df
|
Issue #16121: Fix line number accounting in shlex
|
2013-02-23 22:07:39 +01: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 |
Petri Lehtinen
|
9e14755b46
|
Issue #14720: sqlite3: Convert datetime microseconds correctly
Patch by Lowe Thiderman
|
2013-02-23 19:05:09 +01:00 |
Petri Lehtinen
|
c23178ba36
|
Issue #5033: Fix building of the sqlite3 extension module
|
2013-02-23 17:05:28 +01:00 |
Ezio Melotti
|
0a4a7e13f3
|
Fix deprecation warning in test_tcl.
|
2013-02-23 08:19:00 +02:00 |
Ezio Melotti
|
4dbcec9dd1
|
Fix deprecation warning in tempfile.
|
2013-02-23 08:16:07 +02:00 |
Ezio Melotti
|
ef1db54ac1
|
#17249: check for the availability of the thread module.
|
2013-02-23 06:33:51 +02:00 |
Ezio Melotti
|
2fddfd85bd
|
#17249: convert a test in test_capi to use unittest and reap threads.
|
2013-02-23 05:45:37 +02: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 |
Ezio Melotti
|
7d0eb4b234
|
#17255: test short-circuiting behavior of any()/all(). Patch by Wim Glenn.
|
2013-02-21 23:15:40 +02: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 |
Serhiy Storchaka
|
484dee38e6
|
Issue #17248: Fix os.*chown() testing when user is in root group.
|
2013-02-21 14:33:45 +02:00 |
Ezio Melotti
|
d5bdb1f140
|
#17265: fix highlight in template example. Initial patch by Berker Peksag.
|
2013-02-21 12:30:32 +02:00 |
Barry Warsaw
|
01a97f3612
|
null merge from 2.6
|
2013-02-20 18:25:17 -05:00 |
Barry Warsaw
|
f25d95732c
|
- Issue #16248: Disable code execution from the user's home directory by
tkinter when the -E flag is passed to Python. Patch by Zachary Ware.
|
2013-02-20 18:19:55 -05:00 |