https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
02a807e 12 November 2010, 04:22:22 UTC
c7399d0 #7950: add warning about security implications of shell=True to subprocess docs Patch by Chris Rebert. 12 November 2010, 00:35:31 UTC
ea3e91e Issue #10389: Documented rules for use of case in section titles. 11 November 2010, 22:43:45 UTC
6495136 #1466065: add validate option to base64.b64decode Patch by Neil Tallim. This provides a mechanism for module users to achieve RFC 3548 compliance in the cases where ignoring non-base64-alphabet input characters is *not* mandated by the RFC that references RFC 3548. 11 November 2010, 20:09:20 UTC
49afa38 configparser.py: changed PendingDeprecationWarnings to DeprecationWarnings, via http://mail.python.org/pipermail/python-dev/2010-November/105391.html configparser:py: renamed _views to _proxies to be consistent with the SectionProxy name 11 November 2010, 19:53:23 UTC
b9d10d0 Issue #10386: Added __all__ to token module; this simplifies importing in tokenize module and prevents leaking of private names through import *. 11 November 2010, 14:07:41 UTC
bb27c12 Review the new configparser docs. 11 November 2010, 07:26:40 UTC
8d9a4e6 Disable test_python_builders in test_xmlrpc_net, following buildbot upgrade on python.org 10 November 2010, 22:36:43 UTC
1795464 added myself as a maintainer of configparser 10 November 2010, 18:59:35 UTC
26d513c Issue #5412: extend configparser to support mapping access 10 November 2010, 18:57:39 UTC
47f637c getpath.c: fix test to detech PyUnicode_AsWideChar() failure PyUnicode_AsWideChar() result is signed, whereas it was stored in a unsigned variable, and then the test was "n >= 0" which is always true to an unsigned number. Patch written by Hallvard B Furuseth. 10 November 2010, 14:12:20 UTC
cf9f980 Issue #10372: Import the warnings module only after the IO library is initialized, so as to avoid bootstrap issues with the '-W' option. 10 November 2010, 13:55:25 UTC
81c87c5 Followup to r86383: it seems that in some cases (buildbots), the server closes the connection before we can call shutdown(). 10 November 2010, 08:59:25 UTC
1790ed2 Fix typo. 10 November 2010, 07:57:10 UTC
dac4791 Forward port r86386 after it fixed the 3.1 buildbot issues 10 November 2010, 00:18:40 UTC
d79f3c8 Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch by Lorenzo M. Catucci. 09 November 2010, 23:10:33 UTC
b1436f1 Fix IMAP.login() to work properly. Also, add remote tests for imaplib (part of #4471). 09 November 2010, 22:55:55 UTC
adffced Preserve the original environment (e.g. LD_LIBRARY_PATH) 09 November 2010, 22:04:44 UTC
84c29a2 Remove uneeded NEWS entries for minor documentation updates. 09 November 2010, 22:04:16 UTC
ff7ffdd Issue #8028: multiprocessing: Documented that ``Process.terminate`` is only intented for use by the parent process. 09 November 2010, 21:52:33 UTC
518eaa8 Issue #7707: Documented that multiprocessing.Queue operations during import can lead to deadlocks. 09 November 2010, 21:46:03 UTC
1d3b893 Documented the new error_callback keyword argument to multiprocessing.Pool's apply_async and map_async 09 November 2010, 21:36:56 UTC
9bc3568 Use script_helper in one more test 09 November 2010, 21:33:55 UTC
e912f5a Added missing NEWS entry for my previous commit (r86370). 09 November 2010, 21:14:53 UTC
2afcbf2 Issue #9244: multiprocessing.pool: Worker crashes if result can't be encoded 09 November 2010, 20:55:52 UTC
fb04691 Issue #10022: The dictionary returned by the `getpeercert()` method of SSL sockets now has additional items such as `issuer` and `notBefore`. 09 November 2010, 20:21:19 UTC
859c4ef Make `usenetrc` False by default (the old behaviour of having it True by default could be rather confusing). 09 November 2010, 18:58:42 UTC
1cb121e Issue #1926: Add support for NNTP over SSL on port 563, as well as STARTTLS. Patch by Andrew Vant. 09 November 2010, 18:54:37 UTC
14fb799 Issue #7061: Added a 'Turtle star' sidebar 09 November 2010, 18:40:03 UTC
922e904 Fix issue10324 - Modules/binascii.c: simplify expressions 09 November 2010, 09:59:13 UTC
4fe519b Issue #10359: Remove useless (duplicate) initialization in _csv 09 November 2010, 09:40:16 UTC
132ef6c Issue #10359: Remove useless comma, invalid in ISO C 09 November 2010, 09:39:41 UTC
9f0b51e Issue #10359: Use Py_UNICODE for the typecode in array And don't create non constant array, invalid in ISO C. 09 November 2010, 09:38:30 UTC
3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C 09 November 2010, 09:32:19 UTC
572895b Simplify code 09 November 2010, 03:43:58 UTC
e1f849c Fixed a typo in ReST markup. 09 November 2010, 03:13:43 UTC
ec30b3d Fix Issue10205 - XML QName error when different tags have same QName. 09 November 2010, 02:36:59 UTC
92665ab test_tokenize: use self.assertEqual() instead of plain assert 09 November 2010, 01:11:31 UTC
58c0752 Issue #10335: Add tokenize.open(), detect the file encoding using tokenize.detect_encoding() and open it in read only mode. 09 November 2010, 01:08:59 UTC
ae4836d Issue #6011: decode PREFIX, EXEC_PREFIX and PYTHONPATH variables using _Py_char2wchar(), instead of L"" VAR hack, to escape undecodable bytes using the surrogateescape error handler. 08 November 2010, 23:49:47 UTC
d5af0a5 PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() fails 08 November 2010, 23:34:29 UTC
19de4c3 _Py_char2wchar() frees the memory on conversion error Explain in the documentation that conversion errors should never happen. 08 November 2010, 23:30:46 UTC
18c3373 Fixed unit test failure on Windows 08 November 2010, 23:10:20 UTC
2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails * Add error_pos optional argument to _Py_wchar2char() * PyUnicode_EncodeFS() raises a UnicodeEncodeError or MemoryError if _Py_wchar2char() fails 08 November 2010, 22:43:46 UTC
0cfba09 This was actually fixed for the previous alpha. 08 November 2010, 21:48:23 UTC
ea510eb Fix memory consumption advertised by some test cases 08 November 2010, 21:40:13 UTC
d7ae299 Fix test_hashlib with the bigmem option 08 November 2010, 20:36:57 UTC
6672ea9 Streamlined code in trace.Ignore and added unit tests. 08 November 2010, 18:32:40 UTC
551f02c Add missing NEWS entry for a fix committed by Senthil. All recent modifications to distutils should now be covered in NEWS. 08 November 2010, 18:15:17 UTC
7dff9e0 #10321: Add support for sending binary DATA and Message objects to smtplib 08 November 2010, 17:15:13 UTC
a563392 Move a news entry to the right section (+ light reformatting) 08 November 2010, 17:13:03 UTC
b8bbffd Fix next version name. 08 November 2010, 16:57:52 UTC
49d4741 Fix typo. 08 November 2010, 11:08:35 UTC
facfb15 Fix latex conversion glitch in property/feature descriptions. 08 November 2010, 11:05:18 UTC
c64cb6f Extra space caught by the post-commit-hook, aka Taggnostr :) 08 November 2010, 02:04:05 UTC
a0fa1ce Fix Issue 10303: a small clarification in the tutorial. 08 November 2010, 01:53:13 UTC
ab19bd4 typo: annually->manually ...unless these are commands you only run once a year :) 07 November 2010, 22:09:05 UTC
9aad7fe Removing reference to ftp.python.org and enhancing RPM README. 07 November 2010, 21:26:53 UTC
d95c7b5 Issue #10347: ignore leading test count ("[ 1/340]") when using the -f option to regrtest. 07 November 2010, 20:50:51 UTC
c911bbf str, bytes, bytearray docstring: remove unnecessary [...] 07 November 2010, 19:04:46 UTC
e14e212 Fix encode/decode method doc of str, bytes, bytearray types * Specify the default encoding: write 'utf-8' instead of sys.getdefaultencoding(), because the default encoding is now constant * Specify the default errors value 07 November 2010, 18:41:46 UTC
64bc3b2 Issue #10329: The trace module writes reports using the input Python script encoding, instead of the locale encoding. Patch written by Alexander Belopolsky. 07 November 2010, 15:47:36 UTC
bb4f218 os module: remove nonbreaking space in a comment 07 November 2010, 15:43:39 UTC
a837aa6 Update assertComplexIdentical to handle nans correctly. 07 November 2010, 15:31:41 UTC
4ae5f13 Issue #6317: Now winsound.PlaySound only accepts unicode with MvL's approval. 07 November 2010, 14:29:26 UTC
be3da38 Issue #10337: skip tests of tanh() sign in test_math and test_cmath if tanh() doesn't preserve the zero sign (if TANH_PRESERVES_ZERO_SIGN define is 0). 07 November 2010, 14:14:27 UTC
7089a4e Fix Issue10226 - Clarifying the role of the netloc separator. 07 November 2010, 12:57:04 UTC
4a3c7c4 Issue #10145: the float.is_integer method was undocumented. 07 November 2010, 12:48:18 UTC
35adf5d Changed entry name because it's hard to merge. 07 November 2010, 11:32:01 UTC
43ef32a Issue 10297: Add missing import in decimal example snippet. 07 November 2010, 11:24:44 UTC
cdc8cdd Reformatted code a bit. 07 November 2010, 11:07:44 UTC
baa0f05 Add a dtoa.c test value that triggered a bug in recent versions of Gay's dtoa.c (but not for current versions of Python's dtoa.c). Thanks Rick Regan for finding and reporting this. 07 November 2010, 10:01:46 UTC
c08c9bc Issue #6317: Now winsound.PlaySound can accept non ascii filename. 07 November 2010, 09:23:15 UTC
2e598fa test_concurrent_futures: remove temporary hack 07 November 2010, 04:36:56 UTC
62fbdd9 Formatted code. (Tabify, etc) 07 November 2010, 02:45:19 UTC
51d2fd9 Added more to docstrings for str.format, format_map, and __format__. 06 November 2010, 19:27:37 UTC
7c03d8c Fix #10252 again (hopefully definitely). Patch by Brian Curtin. 06 November 2010, 18:03:52 UTC
71f8c65 Remove traces of setuptools (#10341) 06 November 2010, 16:06:37 UTC
8bdbe9c Correct the fix for #10252: Popen objects have no close method. 06 November 2010, 15:57:52 UTC
e7cf954 Add missing NEWS entries for some of my commits. 06 November 2010, 15:01:07 UTC
72f6620 Removed unused test classes from test_format_map(). 06 November 2010, 14:43:26 UTC
5ad85f8 Added example for str.format_map(). 06 November 2010, 13:22:13 UTC
7322fcf test_concurrent_futures: dump ulimit -a to check a failure on x86 FreeBSD 7.2 3.x, buildbot 06 November 2010, 13:10:29 UTC
273b766 os.get_exec_path() ignores BytesWarning instead of recoding them Use only one global warning.catch_warnings() context, instead of two local contexts. Improve also the explaination why the function uses a local import. 06 November 2010, 12:59:33 UTC
6881886 #10334: add a role to refer to Python source files in SVN. 06 November 2010, 07:19:35 UTC
1cb25aa Tweak example to make clear the argument is a boolean, not any integer. With Raymond’s approval. 06 November 2010, 07:03:07 UTC
c6ecb01 Fix wrapper/wrapped typo (with Raymond’s blessing) 06 November 2010, 06:33:03 UTC
8f9626b Fix typo 06 November 2010, 06:30:16 UTC
45ee43b Remove traces of Mac OS 9 support, again (#9508). This was done in r80805 (#7908) and erroneously brought back by the distutils revert. This commit removes more code than the original, which was uncomplete. There is no NEWS entry, like in r80805. 06 November 2010, 06:00:54 UTC
2642ad0 Fix typo from r86170. 06 November 2010, 04:59:27 UTC
ba7209f Prevent race condition with mkdir in distutils. Patch by Arfrever on #9281. 06 November 2010, 04:48:05 UTC
909ddbd Add missing NEWS entry for r86239. 06 November 2010, 04:24:00 UTC
7fa886d Prevent ResourceWarnings in test_gettext 06 November 2010, 04:11:59 UTC
37a8933 Fix caching error found by regrtest -R (#10229) 06 November 2010, 04:09:29 UTC
70ec44a Make sure each test can be run standalone (./python Lib/distutils/tests/x.py) 06 November 2010, 02:44:43 UTC
1c50549 Fix one omission in r78359 06 November 2010, 02:12:51 UTC
5ac6d80 Also close file descriptors from os.popen and subprocess.Popen 06 November 2010, 02:10:32 UTC
25b5741 Issue #10330: trace module can now be used with python built without threads. 06 November 2010, 01:31:16 UTC
ecd34cb Clear up ResourceWarnings 06 November 2010, 01:30:41 UTC
5fd730e Of course, I forgot one file in r86223. 05 November 2010, 23:59:32 UTC
back to top