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

sort by:
Revision Author Date Message Commit Date
2cf9ddb configparser: fixed inconsistency where in SafeConfigParser option values were ensured to be strings but section names and option keys were not. Behaviour unchanged for RawConfigParser and ConfigParser. 04 December 2010, 12:46:01 UTC
d2a9b20 Issue #10596: Fix float.__mod__ to have the same behaviour as float.__divmod__ with respect to signed zeros. 04 December 2010, 12:25:30 UTC
7f4bc00 I hope this will fix Win2008(x64) buildbot error. 04 December 2010, 12:20:57 UTC
0d012f2 Expose CompileString, not CompileStringFlags under the limited API. 04 December 2010, 12:00:49 UTC
66f2623 Remove some unecessary '#ifdef Py_NAN's from floatobject.c 04 December 2010, 11:52:58 UTC
24bcc61 configparser: minute refactoring of RawConfigParser.items() 04 December 2010, 11:48:11 UTC
09b0b3a issue10622: fix superflous scrollbar on the right side of <pre> boxes in the generated html docs. visible in chrome, possibly other webkit browsers. 04 December 2010, 11:36:58 UTC
d4cc7bf issue6559: Adds a pass_fds parameter to subprocess.Popen that allows the caller to list exactly which file descriptors should be kept open. 04 December 2010, 11:22:11 UTC
1acb746 Add the "interact" pdb command from pdb++. 04 December 2010, 11:20:26 UTC
732324a #7905: Actually respect the keyencoding parameter to shelve.Shelf. 04 December 2010, 11:12:43 UTC
c9fb3c6 Fix indentation in Objects/longobject.c 04 December 2010, 11:06:25 UTC
c29cc6a #1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the code follows unicode_repeat. 04 December 2010, 11:02:04 UTC
9d87119 #1772833: add -q command line option. 04 December 2010, 10:47:18 UTC
cbd2ab1 #1513299: cleanup some map() uses where a comprehension works better. 04 December 2010, 10:39:14 UTC
8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. 04 December 2010, 10:26:46 UTC
427d314 Fixed several corner case issues on os.stat/os.lstat related to reparse points. (Windows) - Set S_IEXEC via final path name not link name. - Set S_IFLNK also via FindFirstFile (when CreateFile fails) 04 December 2010, 10:16:05 UTC
b416230 refactor the warning test. 04 December 2010, 09:59:52 UTC
10064e9 Add the NEWS entry for issue7904 04 December 2010, 09:44:30 UTC
d9e833c #6045: provide at least get() and setdefault() for all dbm modules. 04 December 2010, 09:14:36 UTC
da72231 Regenerate. 04 December 2010, 09:12:14 UTC
81c9b45 Add Revision keyword. 04 December 2010, 09:11:41 UTC
d23047b issue7213 + issue2320: Cause a DeprecationWarning if the close_fds argument is not passed to subprocess.Popen as the default value will be changing in a future Python to the safer and more often desired value of True. DeprecationWarnings that show up in a lot of existing code are controversial and have caused pain in the past. I'd like to leave this on for 3.2 beta1 and see how things go. We can remove the warning if it is deemed too noisy during any betas. (case study: the md5 and sha module DeprecationWarnings are loathed around the world as those modules were never going to be removed in 2.x and 2to3 has a fixer for code that uses them) 04 December 2010, 09:10:44 UTC
35f08f0 Make script 2-vs-3-agnostic. 04 December 2010, 09:08:10 UTC
e8b0d61 Fix typo. 04 December 2010, 09:04:04 UTC
942af5a Issue #10557: Fixed error messages from float() and other numeric types. Added a new API function, PyUnicode_TransformDecimalToASCII(), which transforms non-ASCII decimal digits in a Unicode string to their ASCII equivalents. 04 December 2010, 03:38:46 UTC
36526bf Correct comment in unittest test 04 December 2010, 01:43:59 UTC
37d120a Issue 10620: Specifying test modules by path instead of module name to 'python -m unittest' 04 December 2010, 01:11:21 UTC
e2bb4eb Merged revisions 85551,86156-86157,86464 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r85551 | benjamin.peterson | 2010-10-15 23:57:29 +0200 (Fr, 15 Okt 2010) | 1 line escape() is now in the html module ........ r86156 | georg.brandl | 2010-11-04 09:34:57 +0100 (Do, 04 Nov 2010) | 1 line Consistency fixes in option parser help texts. ........ r86157 | georg.brandl | 2010-11-04 09:35:30 +0100 (Do, 04 Nov 2010) | 1 line #10286: fix urllib class names. ........ r86464 | benjamin.peterson | 2010-11-14 16:28:52 +0100 (So, 14 Nov 2010) | 1 line match only .py files #10416 ........ 03 December 2010, 23:11:07 UTC
4b9b197 Issue #10534: add NEWS entry for r86983 and r87000. 03 December 2010, 22:50:06 UTC
bcd8988 Issue 10534 deprecate isbjunk and isbpopular methods. Will add gone in 3.3 test later. 03 December 2010, 22:29:40 UTC
3a11e71 %s -> %r correction after review by Éric Araujo 03 December 2010, 22:15:19 UTC
4d0d471 Merge branches/pep-0384. 03 December 2010, 20:14:31 UTC
c4df784 Issue #10272: The ssl module now raises socket.timeout instead of a generic SSLError on socket timeouts. 03 December 2010, 19:59:41 UTC
500be24 Fix indentation. 03 December 2010, 19:56:42 UTC
bb48a8b Allow translators to reorder placeholders in localizable messages from argparse (#10528). There is no unit test; I checked with xgettext that no more warnings were emitted. Steven approved the change. 03 December 2010, 19:41:00 UTC
add7cbf Fix so that test.test_unittest can be executed by unittest and not just regrtest 03 December 2010, 19:20:44 UTC
a9c7a8f Fix incorrect use of gettext in argparse (#10497). Steven, the maintainer of argparse, agreed to have this committed without tests for now, since the fix is obvious. See the bug log. 03 December 2010, 19:19:17 UTC
bed81c8 Add an "advanced topics" section to the io doc. 03 December 2010, 19:14:17 UTC
74a7c67 03 December 2010, 18:57:42 UTC
f3b68b3 Issue #10478: Reentrant calls inside buffered IO objects (for example by way of a signal handler) now raise a RuntimeError instead of freezing the current process. 03 December 2010, 18:41:39 UTC
38e117d Fix punctuation. 03 December 2010, 17:19:27 UTC
ebc0052 import: use PyUnicode_FSConverter to support bytes path and PEP 383 (instead of PyArg_Parse*() with "es" format and Py_FileSystemDefaultEncoding) 03 December 2010, 17:06:43 UTC
f961377 #6780: fix complex() constructor TypeError message 03 December 2010, 16:51:33 UTC
b6a6f5f Issue 10499: Modular interpolation in configparser 03 December 2010, 16:28:00 UTC
ecace28 Handle Windows paths and don't double up on HTML header sections in new pydoc URL handler 03 December 2010, 16:08:46 UTC
1eb40bc Markup consistency fixes. 03 December 2010, 15:30:09 UTC
a524070 Add missing CSS file from r86962 03 December 2010, 14:30:41 UTC
37ee850 Issue 2690: Add support for slicing and negative indices to range objects (includes precalculation and storage of the range length). Refer to the tracker issue for the language moratorium implications of this change 03 December 2010, 14:26:13 UTC
fad058f logging: tidied up some docstrings. 03 December 2010, 13:01:11 UTC
3ab34cc Factor out common code from lib/test/__main__.py and lib/test/regrtest.py into a function. 03 December 2010, 12:27:40 UTC
6156152 logging: Added getLogRecordFactory/setLogRecordFactory with docs and tests. 03 December 2010, 11:50:38 UTC
97cbb76 Fix lib/test/__main__.py to work even outside a Python build. 03 December 2010, 10:59:15 UTC
ee4a5e0 Adding lib/test/__main__.py for running tests with 'python -m test' 03 December 2010, 10:42:03 UTC
9bd45f9 #10549: fix interface of docclass() for text documenter. 03 December 2010, 09:58:38 UTC
34e9fc2 Add a line with the actual changes. 03 December 2010, 09:45:33 UTC
7bb30b7 Improve Pydoc interactive browsing (#2001). Patch by Ron Adam. * A -b option to start an enhanced browsing session. * Allow -b and -p options to be used together. * Specifying port 0 will pick an arbitrary unused socket port. * A new browse() function to start the new server and browser. * Show Python version information in the header. * A *Get* field which takes the same input as the help() function. * A *Search* field which replaces the Tkinter search box. * Links to *Module Index*, *Topics*, and *Keywords*. * Improved source file viewing. * An HTMLDoc.filelink() method. * The -g option and the gui() and serve() functions are deprecated. 03 December 2010, 09:29:11 UTC
9af2a6e Rewrap NEWS (Builbot test commit.) 03 December 2010, 09:18:37 UTC
f8de3fe #10360: catch TypeError in WeakSet.__contains__, just like WeakKeyDictionary does. 03 December 2010, 07:55:44 UTC
3b9406b Remove redundant check for PyBytes in unicode_encode. 03 December 2010, 07:54:09 UTC
bd87d08 Use booleans. 03 December 2010, 07:49:09 UTC
d80d5f4 #940286: pydoc.Helper.help() ignores input/output init parameters. 03 December 2010, 07:47:22 UTC
4c4c0f2 Partially revert r78719 - it removed a check that is still needed in some cases (i.e. this will allow Michael to add the test.__main__ support that broke the buildbots previously) 03 December 2010, 07:44:33 UTC
1e5c5f8 #1745035: add limits for command and data size to smtpd; patch by Savio Sena. 03 December 2010, 07:38:22 UTC
106a54d Move entries from "core" section to where they belong. 03 December 2010, 07:37:16 UTC
bb7b753 Add missing versionchanged, correct 'throw' wording to 'raise'. 03 December 2010, 04:26:18 UTC
b579dba #1486713: Add a tolerant mode to HTMLParser. The motivation for adding this option is that the the functionality it provides used to be provided by sgmllib in Python2, and was used by, for example, BeautifulSoup. Without this option, the Python3 version of BeautifulSoup and the many programs that use it are crippled. The original patch was by 'kxroberto'. I modified it heavily but kept his heuristics and test. I also added additional heuristics to fix #975556, #1046092, and part of #6191. This patch should be completely backward compatible: the behavior with the default strict=True is unchanged. 03 December 2010, 04:06:39 UTC
79cdb66 Fix #10554. Added context manager support to Popen objects. Added a few common Popen uses to the tests like we've done for a few other instances of adding context managers. Eventually the entire test suite could be converted to use the context manager format. 03 December 2010, 02:46:02 UTC
2d93e6e Update the itertools.accumulate() docs. 03 December 2010, 02:33:53 UTC
240f112 Remove test/__main__.py until runpy tests can be fixed 03 December 2010, 02:27:44 UTC
d8ff465 Simplify the signature for itertools.accumulate() to match numpy. Handle one item iterable the same way as min()/max(). 03 December 2010, 02:09:34 UTC
a7a0e1a Set test.regrtest.TEMPDIR correctly when run with 'python -m test' 03 December 2010, 02:03:30 UTC
9efdcca code style 03 December 2010, 01:44:10 UTC
e2befc1 Initial implementation of Lib/test/__main__.py so we can run tests with 'python -m test' 03 December 2010, 01:34:01 UTC
5074df6 Issue 7911: unittest.TestCase.longMessage defaults to True for improved failure messages by default 03 December 2010, 00:53:09 UTC
1203720 Re-add accidentally removed line. 02 December 2010, 22:35:25 UTC
5137d64 Fix wrong test code in test_csv (#10602) 02 December 2010, 22:16:19 UTC
9833822 Issue9915: speeding up sorting with a key 02 December 2010, 21:55:33 UTC
a0b44b5 #8989: add 'domain' keyword to make_msgid. Patch by Adrian von Bidder. 02 December 2010, 21:47:19 UTC
52173d4 Fix #9333. Expose os.symlink on Windows only when usable. In order to create symlinks on Windows, SeCreateSymbolicLinkPrivilege is an account privilege that is required to be held by the user. Not only must the privilege be enabled for the account, the activated privileges for the currently running application must be adjusted to enable the requested privilege. Rather than exposing an additional function to be called prior to the user's first os.symlink call, we handle the AdjustTokenPrivileges Windows API call internally and only expose os.symlink when the privilege escalation was successful. Due to the change of only exposing os.symlink when it's available, we can go back to the original test skipping methods of checking via `hasattr`. 02 December 2010, 18:29:18 UTC
0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. 02 December 2010, 18:06:51 UTC
de0ab5e #10597: fix Py_SetPythonHome docs by pointing to where the meaning of PYTHONHOME is already documented. 02 December 2010, 18:02:01 UTC
ee25568 Fix spelling of Jamie Zawinski's surname in urllib.parse docstring (issue 10606) 02 December 2010, 16:41:00 UTC
c167368 Fix-up documentation of makedirs(). 02 December 2010, 09:06:12 UTC
5a22b65 Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' exception. Patch by Ray Allen. 02 December 2010, 07:05:56 UTC
3cdf871 Neaten-up random module docs. 02 December 2010, 05:35:35 UTC
b2ddf79 Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!) 02 December 2010, 04:11:46 UTC
d2bb830 #10464: fix netrc handling of lines with embedded '#" characters. Patch by Xuanji Li. 02 December 2010, 02:58:07 UTC
2fdc7b1 Add an example to the random docs. 02 December 2010, 02:41:33 UTC
c74d518 Fix markup 02 December 2010, 01:38:25 UTC
f546e70 Issue4335: Added a test for inspect.getsourcelines with a module without EOL at EOF. 02 December 2010, 00:10:11 UTC
507e3f8 With Raymond's approval added a paragraph describing Unicode 6.0.0 changes. Not reST formatted. 02 December 2010, 00:05:57 UTC
30c7362 Clean-up last update (missing comma, unnecessary spacing change, spurious backtick). 01 December 2010, 23:45:20 UTC
adb8146 Add itertools.accumulate(). 01 December 2010, 22:50:36 UTC
482ba77 Add itertools.accumulate(). 01 December 2010, 22:48:00 UTC
2f9a77a Reverted unintended change from r86916 01 December 2010, 21:55:40 UTC
41e422a Issue #4113: Added custom __repr__ method to functools.partial. 01 December 2010, 20:05:49 UTC
419e3de Fix some markup and style in the unittest docs. 01 December 2010, 15:44:25 UTC
f7f5a82 #10594: fix parameter names in PyList API docs. 01 December 2010, 15:36:33 UTC
063f237 Add missing word, and add a better reference to the actual function. 01 December 2010, 15:32:43 UTC
5ce0aa2 Add recipe to itertools doc. 01 December 2010, 10:49:19 UTC
back to top