https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
09a7df8 #3243 follow-up: remove debugging print and fix docs; data is a bytes object. 19 December 2010, 12:33:52 UTC
7bc0d87 Issue3243 - Support iterable bodies in httplib. Patch contributions by Xuanji Li and Chris AtLee. 19 December 2010, 10:49:52 UTC
8a60e94 Bump to 3.2b2. 19 December 2010, 10:30:28 UTC
c884350 Fix markup error and update suspicious file. 19 December 2010, 10:28:46 UTC
3de338f Update pydoc topics. 19 December 2010, 10:25:28 UTC
cf8a209 Temporarily skip test failing with newer ttk. 19 December 2010, 10:17:46 UTC
aedd289 #6075: make idle work with both Carbon AquaTk and Cocoa AquaTk. Patch by Kevin Walzer and Ned Deily. 19 December 2010, 10:10:32 UTC
7504302 Logging documentation update. 19 December 2010, 06:02:31 UTC
cca5be2 Improvement to fix for issue 9926 to allow TestResult to be reused. 19 December 2010, 04:07:28 UTC
f100dbd Fix minor issue in implementation of issue 10470. 19 December 2010, 03:59:10 UTC
b3468f7 Issue 10611. Issue 9857. Improve the way exception handling, including test skipping, is done inside TestCase.run 19 December 2010, 03:19:47 UTC
addc6f5 #10573: use actual/expected consistently in unittest methods. The order of the args of assertCountEqual is also changed. 18 December 2010, 20:00:04 UTC
63563cd #9286: Fix the rfc822 parser to preserve whitespace in address local part. Such addresses are not RFC compliant except under the 'obsolete syntax' rules, but before this fix the whitespace was dropped from the input, concatenating the pieces. That breaks one of the principles of the email package, that of preserving the input as much as possible. It also denies the application program the opportunity to apply its own heuristics to interpretation of such non-compliant addresses. It is possible users of the email package were depending on the local part always being a single token, so this fix will not be backported. 18 December 2010, 18:25:38 UTC
2b37ce7 NEWS entry for r87373 18 December 2010, 17:59:18 UTC
0bdfbfa #10723: add missing builtin exceptions. 18 December 2010, 17:51:28 UTC
3044fa7 Use lowercase true/false in assertTrue/assertFalse messages. 18 December 2010, 17:31:58 UTC
b68a7bc #10404: Use ctl-button-1 for context menus on OSX Idle. This provides access to the context menus where they previously could not be accessed due to the way OSX Tk binds buttons. It also improves platform consistency. Patch by Ned Deily. 18 December 2010, 17:19:10 UTC
5466bf1 Fix Issue6791 - Limit the HTTP header readline with _MAXLENGTH. Patch by Antoine Pitrou 18 December 2010, 16:55:23 UTC
32e1771 #10728: the default for printing help is sys.stdout, not stderr. 18 December 2010, 16:39:06 UTC
77570e2 Fix typo. 18 December 2010, 16:21:58 UTC
ac53ab6 #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Urban. 18 December 2010, 14:59:43 UTC
197c9c9 Make this a note again. 18 December 2010, 12:33:06 UTC
eebb252 Use kbd role. 18 December 2010, 12:01:15 UTC
5d53fdd Typo fix. 18 December 2010, 11:58:12 UTC
101234b Add attribution. 18 December 2010, 11:53:25 UTC
2b8861f Nits. 18 December 2010, 11:20:52 UTC
fd311a7 Add subparser aliases for argparse. Resolves issue 9324. Approved by Georg for beta2 on the tracker. 18 December 2010, 11:19:23 UTC
0412974 Minor markup and wording fixups. 18 December 2010, 10:57:50 UTC
d73be67 Minor wordsmithing and markup fix-ups. 18 December 2010, 10:48:26 UTC
3094ed8 Enhance argparse example to show aliases. 18 December 2010, 09:41:32 UTC
52d1b4e #9907: call rl_initialize early when using editline on OSX editline rl_initialize apparently discards any mappings done before it is called, which makes tab revert to file completion instead of inserting a tab. So now on OSX we call rl_initialize first if we are using readline, and then re-read the users .editrc (if any) afterward so they can still override our defaults. Patch by Ned Deily, modified by Ronald Oussoren. 18 December 2010, 03:48:32 UTC
c539a2a Add link to a sample solution to a common problem. 17 December 2010, 23:31:30 UTC
c5895dc Fix typo 17 December 2010, 22:28:07 UTC
7bbc855 update .gitignore using .hgignore 17 December 2010, 22:24:30 UTC
79a06ed fix for an embarrassing autoformatting SNAFU. Thanks for your alertness, Antoine. 17 December 2010, 22:05:46 UTC
2b38b6c configparser hype coming up! 17 December 2010, 21:57:32 UTC
71b37a5 100% test coverage, better mapping protocol compatibility, some minor bugfixes 17 December 2010, 21:56:32 UTC
0e74cac Upgrade to sqlite3 3.7.4. 17 December 2010, 21:04:09 UTC
2a1e3e6 Issue2690: Update docs to reflect the change made by issue2690. 17 December 2010, 20:53:03 UTC
910a4ed Upgrade Tcl/Tk to 8.5.9. 17 December 2010, 20:43:27 UTC
09f4414 Expand the LBYL glossary entry. 17 December 2010, 20:19:50 UTC
401edd6 Issue #4188: Avoid creating dummy thread objects when logging operations from the threading module (with the internal verbose flag activated). 17 December 2010, 17:42:16 UTC
988dbd7 Issue #10711: Remove HTTP 0.9 support from http.client. The `strict` parameter to HTTPConnection and friends is deprecated. 17 December 2010, 17:35:56 UTC
7cb3051 Issue 8753: Added documentation for Py_ReprEntr and Py_ReprLeave. 17 December 2010, 16:31:32 UTC
94f58c3 #10454: clarify the compileall docs and help messages. 17 December 2010, 16:29:07 UTC
a396463 #10559: provide instructions for accessing sys.argv when first mentioned. 17 December 2010, 16:11:40 UTC
dca5b86 Fix Issue9721 - urljoin behavior when the relative url starts with ';' 17 December 2010, 04:48:45 UTC
b25a791 configparser API cleanup: default values now sensible, slightly incompatible. Backwards compatible alternative values possible as documented. Done by Łukasz Langa, approved by Raymond and Fred. 17 December 2010, 01:32:29 UTC
ed16bf4 assert that the regex given to assertRegex is non-empty. 16 December 2010, 19:23:05 UTC
5317e9c #10719: restore messages generated on invalid compileall args Before the introduction of filename arguments to compileall it gave semi useful messages about not being able to 'list' names that weren't valid directories. This fix restores that behavior. In addition to the test for this case, the patch also adds a test for the default behavior of compileall when no arguments are provided, and fixes a bug in one of the previously added tests. 16 December 2010, 19:08:51 UTC
20f0fb6 Issue #10710: `Misc/setuid-prog.c` is removed from the source tree. 16 December 2010, 18:25:24 UTC
c492437 Issue #10714: Limit length of incoming request in http.server to 65536 bytes for security reasons. Initial patch by Ross Lagerwall. 16 December 2010, 16:48:36 UTC
12de8ac Credit Florent for porting 16 December 2010, 13:33:56 UTC
202717d Add todo for WSGI 16 December 2010, 10:06:11 UTC
930df31 Add missing docs and directives related to PEP 3147 and byte-compilation 16 December 2010, 06:28:48 UTC
ff47a13 EasyDialogs was removed in 3.x. fallback_getpass will always be the answer here. 16 December 2010, 03:24:49 UTC
971dc01 Fix one versionchanged 16 December 2010, 03:13:05 UTC
9743e4f Improve the ContextDecorator example. 16 December 2010, 02:24:12 UTC
f68fa05 Add versionadded directive missing from r78983. 16 December 2010, 02:10:11 UTC
1ac0d7a Acknowledged renaming of SafeConfigParser to ConfigParser. 16 December 2010, 01:42:36 UTC
1d55c7e Advertise “python -m test” over test.regrtest (r87296 followup) 16 December 2010, 01:40:26 UTC
7f64c8a Broken ConfigParser removed, SafeConfigParser renamed to ConfigParser. Life is beatiful once again. 16 December 2010, 01:16:22 UTC
bb9686f Thank you ispell. 16 December 2010, 00:53:05 UTC
48f3bd3 Nits 16 December 2010, 00:30:53 UTC
055d2e0 Advertise “python -m” instead of direct filename. 16 December 2010, 00:23:30 UTC
6046e22 Entries for ElementTree, collectionsm, functools and ZipFile. 16 December 2010, 00:21:08 UTC
d6c5f74 No need to generate a link for something that’s just above. 16 December 2010, 00:07:01 UTC
4fef555 Make test_threadsignals more lax, and add notes 15 December 2010, 23:38:50 UTC
810023d Issue #8844: Regular and recursive lock acquisitions can now be interrupted by signals on platforms using pthreads. Patch by Reid Kleckner. 15 December 2010, 22:59:16 UTC
119cda0 Mark up one missed None in pkgutil.rst (#8851) 15 December 2010, 22:37:27 UTC
07a605b Entry for decimal and fractions. 15 December 2010, 22:35:03 UTC
480ed78 Add entries for structseq, ContextDecorator, and various C-API changes. 15 December 2010, 22:07:15 UTC
2d6bb12 Add disclaimer about MinGW compat in distutils docs (#6007). Patch by Chris Lambacher. 15 December 2010, 22:06:35 UTC
60532bd Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558). 15 December 2010, 21:07:22 UTC
4433a5f Fix wrong name in docstring and doc (#10693). Original patch by Eli Bendersky. 15 December 2010, 20:26:30 UTC
17a5925 Issue 10534, difflib: tweak doc; test new SequenceMatcher instance attributes; avoid unneeded lists of SM.b2j keys and items in .__chain_b. Do not backport. 15 December 2010, 20:18:10 UTC
50ba19e Use sentence case in section titles consistently 15 December 2010, 19:47:37 UTC
99db3fd Elaborate on the calculation used in the random module. 15 December 2010, 19:33:49 UTC
67f0b6c Use nested method directives, rewrap long lines, fix whitespace. 15 December 2010, 19:30:15 UTC
e434b3b Add intro to the changed modules section. 15 December 2010, 19:20:01 UTC
d00862a Improve trace documentation (#9264). Patch by Eli Bendersky. 15 December 2010, 19:09:58 UTC
b8eb9cb Move the urllib-inherited API to a distinguished section 15 December 2010, 19:07:26 UTC
0358a17 Move email section in with other modules. Fix markup. 15 December 2010, 19:00:38 UTC
a55ffbc Minor regroupings. 15 December 2010, 18:31:57 UTC
bba537b Adopt Antoine's suggestion to improve readability with module subsections. 15 December 2010, 18:20:19 UTC
e0a9600 Add entries for the random module and the collections module. 15 December 2010, 17:54:13 UTC
96f3410 Issue 10667: Fast path for collections.Counter 15 December 2010, 16:30:37 UTC
779f19e I don't think we need to ship the comp.lang.python RFD these days. 15 December 2010, 15:48:20 UTC
3cbb24d Encourage --with-pydebug rather than individual setting of debug options. 15 December 2010, 15:47:34 UTC
0592be8 Remove outdated compatibility file. 15 December 2010, 15:42:59 UTC
00c6b62 Issue #10706: Remove outdated script runtests.sh. Either `make test` or `python -m test` should be used instead. 15 December 2010, 15:33:18 UTC
bd8f145 TIMEOUT value change in URLTimeout Test. test.support.transient_internet has a socket timeout of 30 when it checks for resource. Explicit overrding (like setting the 10) wont exhibit consistent behavior when tests are outside context manager. So, settting it 30. 15 December 2010, 04:02:45 UTC
42877fe Typo fix 15 December 2010, 02:37:01 UTC
d89bc3f #10705: document what the values of debuglevel are and mean. 15 December 2010, 02:19:14 UTC
ce4b170 #4236: avoid possible Fatal Error when import is called from __del__ Patch by Simon Cross, crasher test code by Martin von Löwis. 14 December 2010, 23:06:25 UTC
95333e3 More comprehensive compileall cli tests, and fixes. 14 December 2010, 22:32:50 UTC
e7fed67 Freshen README contents 14 December 2010, 22:06:10 UTC
ffad35e Nits 14 December 2010, 21:12:03 UTC
9a6b400 Logging documentation update. 14 December 2010, 19:40:21 UTC
31d04f2 SIGCHLD is a more portable name than SIGCLD. (OSX has no SIGCLD) 14 December 2010, 18:18:49 UTC
back to top