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

sort by:
Revision Author Date Message Commit Date
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
c79fb0e Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. 01 December 2010, 03:45:41 UTC
ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. 01 December 2010, 02:32:32 UTC
f10c400 Fix test failure in debug builds and add NEWS entry for r86908 01 December 2010, 01:45:53 UTC
6090187 #10535: Enable silenced warnings in unittest by default 01 December 2010, 00:56:10 UTC
00f2f97 Doc and docstring nits. 01 December 2010, 00:47:56 UTC
c0abc4e Fix #10591. Fix test_os for refleak runs. Split a common setUp/tearDown into the appropriate parts. 30 November 2010, 23:46:54 UTC
715f3cd Issue #8685: Speed up set difference `a - b` when source set `a` is much larger than operand `b`. Patch by Andrew Bennetts. 30 November 2010, 22:23:20 UTC
697ce95 Add link to specification. 30 November 2010, 20:32:59 UTC
cc03858 Documentation nits. 30 November 2010, 20:02:57 UTC
7496b41 Add example, tighten text, and minor clean-ups. 30 November 2010, 19:15:45 UTC
d01df46 Fix typo: "ofbytes" should be "of bytes" 30 November 2010, 17:49:53 UTC
dcb4491 Add some internal links. 30 November 2010, 17:45:41 UTC
73f382d Issue #9598: untabify.py will now respect encoding cookie in the files it processes 30 November 2010, 17:30:43 UTC
ff2a4ba Let’s keep “throw” for the generator method and use “raise” elsewhere. 30 November 2010, 17:20:31 UTC
827fdaa Issue #10552: Partially fixed a sort error in Tools/unicode/gencodec.py 30 November 2010, 16:56:15 UTC
f498b75 Actually fix what I attempted to fix in r86888... 30 November 2010, 15:54:04 UTC
9fc443c Issue 9873: the URL parsing functions now accept ASCII encoded byte sequences in addition to character strings 30 November 2010, 15:48:08 UTC
43f0c27 Try to fix failures on platforms that can't encode the test characters. Skip the test if encoding fails. 30 November 2010, 15:40:04 UTC
5aa580f Fix typo. 30 November 2010, 14:57:54 UTC
e5b99f0 Remove redundant includes of headers that are already included by Python.h. 30 November 2010, 09:41:01 UTC
71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. 30 November 2010, 09:30:54 UTC
53afa6d Fix input type for zlib. 30 November 2010, 08:20:16 UTC
8f358aa #10584: fix bad links. 30 November 2010, 07:43:28 UTC
5e20bab Neaten-up a bit. 30 November 2010, 07:13:04 UTC
7921b9f Issue 10220: switch to using string constants rather than integers for inspect.getgeneratorstate() return values and make debugging friendly str() and repr() for generator states a requirement in the test suite 30 November 2010, 06:36:04 UTC
234515a Issue 10586: change the new functools.lru_cache implementation to expose the maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. 30 November 2010, 06:19:46 UTC
ff27ee0 Issue #10572: Moved json tests to Lib/test/json_tests. Approved by Raymond Hettinger. 30 November 2010, 03:03:30 UTC
69b34bf Issue #10323: Predictable final state for slice(). 30 November 2010, 02:49:29 UTC
ac9a2bb Use booleans where applicable. 29 November 2010, 20:19:15 UTC
2660747 Code style cleanup in bdb. 29 November 2010, 20:12:24 UTC
8175dae Fix heading style inconsistencies. 29 November 2010, 14:53:15 UTC
51be98a Fix indentation bug. 29 November 2010, 14:50:54 UTC
3d0f388 Remove the comment used while testing. 29 November 2010, 12:42:29 UTC
6f10704 Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. Handle multiple breakpoints at same line. Update docs/test. Patch by Xavier de Gaye. 29 November 2010, 11:54:17 UTC
ead2222 Issue #10565: Iterator ABC should require both __next__ and __iter__. 29 November 2010, 03:56:12 UTC
263cbdf Use assertCountEqual instead of assertItemsEqual 29 November 2010, 02:02:10 UTC
40b8cf5 Do not add an obsolete unittest name to Py3.2. 29 November 2010, 01:38:25 UTC
fc889c4 Fix for #8879. Amaury noticed that this was originally written in a way that would fail on names that can't be encoded with the mbcs codec. Restructured the function to work with wide names first then narrow names second, to fall in line with the way other functions are written in posixmodule.c. 28 November 2010, 23:59:46 UTC
1de9115 Add callable() to the built-in functions table. 28 November 2010, 04:18:54 UTC
f6861ae there's now a setup.py switch for this 28 November 2010, 02:51:28 UTC
2a7feee Windows: fix leak in posix_listdir. 27 November 2010, 22:06:49 UTC
e71362d Issue #10518: Bring back the callable() builtin. Approved by Guido (BDFL) and Georg (RM). 27 November 2010, 22:00:11 UTC
dc9b17d Add version-added note twice for new difflib SequenceMatcher autojunk parameter. 27 November 2010, 20:52:14 UTC
a66e029 Make doc for PyErr_Format() up to date. 27 November 2010, 20:40:43 UTC
34520cd Roumen Petrov's fix for when all paths are absolute. (Issue 10520) 27 November 2010, 20:03:03 UTC
30b341f Fix additional leaks. 27 November 2010, 11:44:18 UTC
6e165b3 Issue 10242: unittest.assertItemsEqual makes too many assumptions. 27 November 2010, 09:31:37 UTC
db213a2 Replace _nbits() with int.bit_length(). 27 November 2010, 08:09:40 UTC
76338ec Rewrap long lines + minor edits 26 November 2010, 23:46:18 UTC
8acb67c Use link-generating markup (see #9312) 26 November 2010, 23:31:07 UTC
1f75f5d Fixed deprecation warnings. 26 November 2010, 18:51:39 UTC
0e803b3 Further indentation cleanup. 26 November 2010, 16:16:47 UTC
9943926 Issue #10383: Fix two leaks. 26 November 2010, 12:58:05 UTC
fe12390 Better example for os.system(): do not change the system time. 26 November 2010, 12:12:14 UTC
back to top