Commit graph

45536 commits

Author SHA1 Message Date
Senthil Kumaran
75d818fa91 Fix Issue10228 - Refleak run of test_dbm fails when several dbm modules are available (Patch by Ray.Allen) 2011-02-26 03:44:03 +00:00
Raymond Hettinger
94ca211372 Make Py3.x style "import builtins" 2011-02-26 02:48:44 +00:00
Alexander Belopolsky
4001847a98 PEP 7 conformance changes (whitespace only). 2011-02-26 01:02:56 +00:00
Raymond Hettinger
9fe1ccfb5a Issue #11297: Add collections.ChainMap() 2011-02-26 01:02:51 +00:00
Antoine Pitrou
692f038a5d Fix AttributeError. 2011-02-26 00:22:25 +00:00
Antoine Pitrou
5c2f4640a7 Fix compilation warning in Modules/posixmodule.c. 2011-02-26 00:22:09 +00:00
Antoine Pitrou
8250e23abd Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall. 2011-02-25 23:41:16 +00:00
Antoine Pitrou
f65132de3d Issue #4761: Add the *at() family of functions (openat(), etc.) to the posix
module.  Patch by Ross Lagerwall.
2011-02-25 23:25:17 +00:00
Antoine Pitrou
68e5c044e8 Issue #7322: Trying to read from a socket's file-like object after a timeout
occurred now raises an error instead of silently losing data.
Patch by Ross Lagerwall.
2011-02-25 23:07:44 +00:00
Vinay Sajip
fc1cf41911 test_logging: Added more diagnostics for buildbot failures. 2011-02-25 22:45:25 +00:00
Giampaolo Rodolà
95bcb93041 Issue 11291: poplib suppresses errors on QUIT. 2011-02-25 22:28:24 +00:00
Giampaolo Rodolà
103a6d6cd6 Issue 11177: asyncore's create_socket() arguments can now be omitted. 2011-02-25 22:21:22 +00:00
Antoine Pitrou
0bd4deba38 Issue #6064: Add a daemon keyword argument to the threading.Thread
and multiprocessing.Process constructors in order to override the
default behaviour of inheriting the daemonic property from the current
thread/process.
2011-02-25 22:07:43 +00:00
Giampaolo Rodolà
4bc685752f (issue 11323) - attempt to fix solaris buildbot failure for os.sendfile(). Also fixed an AttributeError in get/set priority tests. 2011-02-25 21:46:01 +00:00
Éric Araujo
2035103a25 Add missing read() in distutils doc. 2011-02-25 21:40:34 +00:00
Antoine Pitrou
707ce82cab Issue #10956: Buffered I/O classes retry reading or writing after a signal
has arrived and the handler returned successfully.
2011-02-25 21:24:11 +00:00
Giampaolo Rodolà
7e1b9af044 Update Misc/NEWS to include os.getpriority() and os.setpriority() addition. 2011-02-25 21:00:10 +00:00
Giampaolo Rodolà
18e8bcb289 Issue 10784: adds os.getpriority() and os.setpriority() functions. 2011-02-25 20:57:54 +00:00
Antoine Pitrou
211b81dd09 Issue #11114: Fix catastrophic performance of tell() on text files (up
to 1000x faster in some cases).  It is still one to two order of magnitudes
slower than binary tell().
2011-02-25 20:27:33 +00:00
Giampaolo Rodolà
d2751fb482 (issue 11214) - fix asyncore.strerror test failure on AIX 2011-02-25 20:05:48 +00:00
Giampaolo Rodolà
46134645aa Skip os.sendfile() test if threading module is not available. 2011-02-25 20:01:05 +00:00
Alexander Belopolsky
1d52146a25 Issue #11303: Added shortcuts for utf8 and latin1 encodings.
Documented the list of optimized encodings as CPython implementation
detail.
2011-02-25 19:19:57 +00:00
Vinay Sajip
eea22d2d66 logging: enabled test which was intermittently failing on buildbots. 2011-02-25 17:02:43 +00:00
Vinay Sajip
a29a9dd156 Documented QueueListener change. 2011-02-25 16:05:26 +00:00
Vinay Sajip
aa7c179285 Improved QueueListener implementation - queue sentinel addition made extensible. 2011-02-25 15:56:55 +00:00
Marc-André Lemburg
8f36af7a4c Normalize the encoding names for Latin-1 and UTF-8 to
'latin-1' and 'utf-8'.

These are optimized in the Python Unicode implementation
to result in more direct processing, bypassing the codec
registry.

Also see issue11303.
2011-02-25 15:42:01 +00:00
Georg Brandl
a391b11320 Rename internal helper function and make it static. 2011-02-25 15:23:18 +00:00
Georg Brandl
941f956d1b Regenerate configure after r88580. 2011-02-25 15:21:47 +00:00
Giampaolo Rodolà
61a0bf5864 (issue 11232) - fix asyncore documentation issue (patch by Sandro Tosi) 2011-02-25 14:50:57 +00:00
Giampaolo Rodolà
c9c2c8b034 Issue 10882: add os.sendfile(). (patch provided by Ross Lagerwall) 2011-02-25 14:39:16 +00:00
Antoine Pitrou
59db1f3df6 Fix .hgeol 2011-02-25 14:32:24 +00:00
Antoine Pitrou
71219dad3e More eol-style's 2011-02-25 14:31:09 +00:00
Antoine Pitrou
7f1e174c7a Make svn:eol-style's more consistent 2011-02-25 14:19:48 +00:00
Benjamin Peterson
2ec8cbc75f rewrite with assertIs 2011-02-25 14:05:42 +00:00
Benjamin Peterson
83a0efd303 run autoconf 2011-02-25 14:01:05 +00:00
Georg Brandl
c9c9bc02a8 Add 3.3 whatsnew to index. 2011-02-25 11:28:22 +00:00
Georg Brandl
15995f7dc7 Remove unused m4 define. 2011-02-25 11:03:15 +00:00
Eli Bendersky
67ebabd152 Removed fcmp and FUZZ from test.support, following the discussion on python-dev:
http://mail.python.org/pipermail/python-dev/2011-January/107735.html
2011-02-25 10:14:17 +00:00
Eli Bendersky
cbbaa96036 Issue #10516: adding list.clear() and list.copy() methods 2011-02-25 05:47:53 +00:00
Giampaolo Rodolà
3108f98319 Adds Python 3.3 what's new document. 2011-02-24 20:59:48 +00:00
Antoine Pitrou
5bffa79c22 Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with
a buffer struct having a NULL data pointer.
2011-02-24 20:50:49 +00:00
Alexander Belopolsky
1ce92dc20d Issue #11286: Fixed unpickling of empty 2.x strings. 2011-02-24 19:40:09 +00:00
Éric Araujo
6c3787cb70 Allow usage of SomeABC.register as a class decorator. Patch by Edoardo Spadolini (#10868). 2011-02-24 18:03:10 +00:00
Benjamin Peterson
5390d00cc6 rewrite 2011-02-24 02:53:05 +00:00
Benjamin Peterson
634ef9cb81 this seems to be pointlessly nested 2011-02-24 02:46:00 +00:00
Benjamin Peterson
a6f85e2270 Merged revisions 88535 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r88535 | brett.cannon | 2011-02-23 13:46:46 -0600 (Wed, 23 Feb 2011) | 1 line

  Add lib2to3.__main__ for easy testing from the console.
........
2011-02-24 01:41:46 +00:00
Raymond Hettinger
c38f025a55 Issue #11304: Input/output tutorial - PI is rounded not truncated. 2011-02-24 00:08:13 +00:00
Brett Cannon
e457f0d220 Revert r88503 as Benjamin's request. 2011-02-23 18:48:52 +00:00
Victor Stinner
e1ea8298c6 Issue #3080: Fix test_reprlib on Windows
Fix the test for last module changes (r88520).
2011-02-23 14:14:48 +00:00
Victor Stinner
c0f1a1afae Issue #11272: Fix input() and sys.stdin for Windows newline
On Windows, input() strips '\r' (and not only '\n'), and sys.stdin uses
universal newline (replace '\r\n' by '\n').
2011-02-23 12:07:37 +00:00