Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
c934f32 Welcome to the UTF-8 world. 03 September 2010, 23:47:32 UTC
0b37b33 Fix missing word. 03 September 2010, 22:49:27 UTC
661730e Add an entry in whatsnew about the PyCObject -> PyCapsule move. (It seems that I am the first SWIG user to try python 3.2...) 03 September 2010, 22:43:08 UTC
3387f48 #9760: clarify what context expression is. 03 September 2010, 22:40:02 UTC
0bb73b8 #9767: doctest run over json docs. 03 September 2010, 22:36:22 UTC
8d58216 More inclusive title. 03 September 2010, 22:33:27 UTC
0166930 Revert unintended change from r84458. 03 September 2010, 22:29:08 UTC
f11c6c4 Make PEP section a bit less ugly and at least list implemented PEPs. 03 September 2010, 22:20:58 UTC
de7d834 Fix typos and use tabs consistently. 03 September 2010, 22:19:07 UTC
0d169ea Use tabs consistently. 03 September 2010, 22:14:52 UTC
2b19f35 Add versionadded tag to PyUnicode_AsUnicodeCopy's doc 03 September 2010, 22:13:42 UTC
1670b43 Fix invalid bytes for UTF-8 03 September 2010, 22:03:10 UTC
0c8414e Typo 03 September 2010, 20:23:40 UTC
edf5f0d Strengthen BytesWarning tests. 03 September 2010, 20:00:37 UTC
764d612 Remove redundant context manager. 03 September 2010, 19:55:26 UTC
43e4ea1 Remove unused import, fix typo and rewrap docstrings. 03 September 2010, 19:54:02 UTC
7dde792 Use a context manager for some file objects. 03 September 2010, 19:52:03 UTC
24e561a Issue #3805: clean up implementation of the _read method in _ssl.c. 03 September 2010, 18:38:17 UTC
aa44b2b NEWS for PEP 3149, and clean up a few other entries. 03 September 2010, 18:36:11 UTC
98c07bd Doc fix: unicode() is now str() 03 September 2010, 18:31:07 UTC
35f3a2c PEP 3149 is accepted. http://mail.python.org/pipermail/python-dev/2010-September/103408.html 03 September 2010, 18:30:30 UTC
e4ea994 Document PyUnicode_AsUnicodeCopy() 03 September 2010, 16:23:29 UTC
4640860 Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy() 03 September 2010, 16:18:00 UTC
8b358e5 Fix NEWS entry. 03 September 2010, 16:12:14 UTC
6c76528 Fix Issue9753: socket.dup() does not always work right on Windows 03 September 2010, 12:38:33 UTC
06a3c8a fromfd exists on Windows now 03 September 2010, 11:11:43 UTC
2d44449 Reindent. 03 September 2010, 10:52:55 UTC
faf7b7f Issue 8420: Fix obscure set crashers. 03 September 2010, 10:00:50 UTC
8844441 fix output from RawConfigParser.write and ConfigParser.write for None values (http://bugs.python.org/issue7005) (merged r84443 from the release27-mmaint branch, with changes to reflect changes in Python 3) 03 September 2010, 04:22:36 UTC
af1e140 Readability nit. 02 September 2010, 19:58:35 UTC
7babc1b Better method name. Tighten inner-loop with bound methods. 02 September 2010, 19:56:28 UTC
d5c3f6c BytesIO.getvalue() and StringIO.getvalue() are METH_NOARGS. 02 September 2010, 19:48:07 UTC
331722d Make OrderedDict.popitem() a bit smarter and faster 02 September 2010, 18:44:16 UTC
19e5a6f Credit where credit is due 02 September 2010, 15:13:35 UTC
045b3ba Issue #9212: Added the missing isdisjoint method to the dict_keys and dict_items views. The method is required by the collections.Set ABC, which the views register as supporting. 02 September 2010, 15:06:06 UTC
928d4ee Removed an extraneous semicolon 02 September 2010, 15:06:03 UTC
38d17e3 Speed-up cache updates 02 September 2010, 09:44:28 UTC
ccb90e3 Keep contents order the same between versions. 02 September 2010, 09:17:31 UTC
71133ff Create PyUnicode_strdup() function 01 September 2010, 23:43:53 UTC
c4eb765 Create Py_UNICODE_strcat() function 01 September 2010, 23:43:50 UTC
f37ca3c Glossary cleanup 01 September 2010, 22:11:53 UTC
6f80b4c Cleanup heapq docs 01 September 2010, 21:27:31 UTC
c73b909 Fix a compilation warning 01 September 2010, 21:14:46 UTC
e0793ba Issue #9737: Fix a crash when trying to delete a slice or an item from a memoryview object. 01 September 2010, 21:14:16 UTC
6cb5ad0 #9677: fix link. 01 September 2010, 21:02:50 UTC
67e8e56 Try to fix some buildbot failures on test_ssl 01 September 2010, 20:55:41 UTC
a09dc9e 'Using Python' now called 'Python Setup' 01 September 2010, 20:31:59 UTC
1ce3eb5 Issue #8990: array.fromstring() and array.tostring() get renamed to frombytes() and tobytes(), respectively, to avoid confusion. Furthermore, array.frombytes(), array.extend() as well as the array.array() constructor now accept bytearray objects. Patch by Thomas Jollans. 01 September 2010, 20:29:34 UTC
42cb462 Remove unicode_default_encoding constant Inline its value in PyUnicode_GetDefaultEncoding(). The comment is now outdated (we will not change its value anymore). 01 September 2010, 19:39:01 UTC
e0f9863 Issue #9693 - msg 115273: attempt to fix ssl module failures on certain OpenSSL versions by calling ERR_clear_error() before raising IOError 01 September 2010, 19:28:49 UTC
fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() are now removed, since their effect was inexistent in 3.x (the default encoding is hardcoded to utf-8 and cannot be changed). 01 September 2010, 18:54:56 UTC
b0fa831 Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer API properly. Patch by Stefan Behnel. 01 September 2010, 15:10:12 UTC
f68c2a7 Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become _Py_add_one_to_C() and _Py_add_one_to_F(), respectively. 01 September 2010, 12:58:21 UTC
53c58f8 Forward port sorting howto 01 September 2010, 09:15:42 UTC
9707fd2 More descriptive title. 01 September 2010, 08:57:16 UTC
6b3d72c Fix line wrapping 01 September 2010, 08:56:10 UTC
d292a17 2-to-3 fixup for map() example in docs 01 September 2010, 07:46:54 UTC
20933e0 Clean-up bisect docs. * Document the post conditions for bisect_left() and bisect_right(). * Fix the grades example to use more obvious breakpoints and to use a list comprehension instead of map() which returns an iterator in Py3.x. * Improve and expand the examples of searching sorted lists. * Issue 4356 -- move up reference to the SortedCollection recipe. 01 September 2010, 06:58:25 UTC
49203dc reformat comment 31 August 2010, 20:10:55 UTC
19d6a4f Issue #808164: Fixed socket.close to avoid references to globals, to avoid issues when socket.close is called from a __del__ method. 31 August 2010, 20:08:07 UTC
a606faa Issue 5553: Improved Py_LOCAL_INLINE to actually inline under compilers other than MSC 31 August 2010, 19:51:07 UTC
061b14a Reverted r84315 and r84316, with Benjamin's blessing. The tests were fine. They were failing due to a problem exposed in r84307 and fixed in r84317. See Issue 8781 for details. 31 August 2010, 15:45:04 UTC
f5a3d69 add nonlocal to pydoc topics #9724 31 August 2010, 14:31:01 UTC
dc5097f Removed _unicode variable which is always False in Python 3.x. 31 August 2010, 07:52:17 UTC
ec1cd1c logging: merged duplicated code in fileConfig and dictConfig paths. 30 August 2010, 19:02:14 UTC
609364a Logging: removed some old commented out code. 30 August 2010, 18:31:13 UTC
8b7da62 Fix issue #9711: raise ValueError is SSLConnection constructor is invoked with keyfile and not certfile. 30 August 2010, 18:28:05 UTC
40d9a4e Improved logging.Formatter date/time formatting documentation. 30 August 2010, 18:10:03 UTC
33a2994 Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch by Sébastien Sablé. 30 August 2010, 14:52:00 UTC
33856de handle names starting with non-ascii characters correctly #9712 30 August 2010, 14:41:20 UTC
e01de8f remove pointless coding cookies 30 August 2010, 14:05:50 UTC
e992a7d remove pointless coding cookie 30 August 2010, 13:57:28 UTC
6b4fa77 rewrite and move open() docs only to functions.rst 30 August 2010, 13:19:53 UTC
4e4ffb1 sync open() doc 30 August 2010, 12:46:09 UTC
b530e14 Issue #9715: improve documentation of the io module 30 August 2010, 12:41:00 UTC
4a656eb dedent some lines in test_ssl so that they are actually executed 29 August 2010, 22:50:39 UTC
cd9dfb9 in ssl tests rely on IOError.errno rather thanf IOError.strerror for better compatibility across platforms. 29 August 2010, 20:56:56 UTC
51078b1 update Misc/NEWS to include issue #9706 changes 29 August 2010, 19:31:49 UTC
745ab38 Fix issue issue9706: provides a better error handling for various SSL operations 29 August 2010, 19:25:49 UTC
374f835 Raise ValuError if non-zero flag argument is provided for sendall() method for conformity with send(), recv() and recv_into() 29 August 2010, 12:08:09 UTC
67c7ce4 Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private to the socket module, and fix the width of socket descriptors to be correctly detected under 64-bit Windows. 28 August 2010, 20:42:55 UTC
1a9a9d5 Issue #1868: Eliminate subtle timing issues in thread-local objects by getting rid of the cached copy of thread-local attribute dictionary. 28 August 2010, 18:17:03 UTC
64a38c0 Issue #1512791: In setframerate method of Wave_write, round non-integral inputs to the nearest integer. Thanks Neil Tallim for the patch. 28 August 2010, 17:22:16 UTC
a620748 Stop packaging versioncheck. 28 August 2010, 13:40:10 UTC
49561ad Replace cabarc with FCICreate. 28 August 2010, 13:39:09 UTC
9f59fa5 Fix various build problems. 28 August 2010, 13:06:43 UTC
c8fdd10 Add file needed to make distclean. 28 August 2010, 07:42:21 UTC
ccbd427 Issue #9704: Add zlib files necessary to run configure and make. 28 August 2010, 07:37:05 UTC
a7ceeb3 OSError is the exception raised when one tries to create a directory that already exists, not IOError. Part of the continuing saga of issue #9572. 26 August 2010, 21:07:13 UTC
8167561 #9681: typo. 26 August 2010, 14:30:56 UTC
179249f #9689: add links from overview to in-depth class API descriptions. 26 August 2010, 14:30:15 UTC
4bb5c27 Fix Issue8797 - Reset the basic auth retry count when response code is not 401. 26 August 2010, 06:16:22 UTC
0e10206 basicsize and itemsize are Py_ssize_t #9688 25 August 2010, 23:13:17 UTC
dc078de Disable deletion of openssl again. 25 August 2010, 22:15:18 UTC
864078a Issue 8781: Define SIZEOF_WCHAR_T on Windows 25 August 2010, 19:18:59 UTC
6505ee8 apparently this test should be gated, too 25 August 2010, 17:57:04 UTC
b35f646 this test is only valid when sizeof(wchar) == Py_UNICODE_SIZE 25 August 2010, 17:02:22 UTC
ef6ff66 Fix test_sys: set LC_ALL instead of LANG LC_ALL is read before LANG to choose the locale encoding (LC_ALL, LANG and then LC_CTYPE: use the first non empty variable). 25 August 2010, 08:33:34 UTC
112c0f3 Issue #1027206: getnameinfo is now restricted to numeric addresses as input. 25 August 2010, 07:38:15 UTC
219d1c8 #1194222: make parsedate always return RFC2822 four character years. Two character years are now converted to four character years using the Posix standard rule (<68 == 2000, >=68==1900). This makes the parsed date RFC2822 compliant even if the input is not. Patch and test by Jeffrey Finkelstein. 25 August 2010, 00:45:55 UTC
back to top