https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
af358ef 2.7.9rc1 26 November 2014, 00:27:24 UTC
d58cec2 update pydoc-topics 26 November 2014, 00:25:06 UTC
0cb0b30 disable tests that always fail on windows (#22943) 25 November 2014, 23:37:09 UTC
f7363ed use more ugly but hopefully more robust method 25 November 2014, 22:12:32 UTC
69a64d3 handle errors without a reason attribute 25 November 2014, 21:43:58 UTC
f671de4 don't fail tests when www.python.org can't be validated by the system 25 November 2014, 21:16:55 UTC
72275ef remove incorrect plural 25 November 2014, 20:54:45 UTC
226fa56 debugging: print ca certs loaded into default ctx 25 November 2014, 05:25:29 UTC
dfdae02 Issue #16056: Rename test methods to avoid conflict. 24 November 2014, 21:57:00 UTC
8a9c682 Issue #20351: Add examples for csv.DictReader and csv.DictWriter. Patch by Charles-Axel Dein. 24 November 2014, 21:50:46 UTC
40ce014 Fix faulty indent. 24 November 2014, 04:55:55 UTC
51f461f is OpenIndiana actually sunos? 24 November 2014, 04:34:04 UTC
98b1b24 loosen solaris test 24 November 2014, 04:22:59 UTC
0636a4b skip test_gdb on OpenIndiana 24 November 2014, 04:02:47 UTC
e3e7d40 pep 476: verify certificates by default (#22417) 24 November 2014, 03:02:02 UTC
b206473 give urllib.urlopen a context parameter (closes #22927) 24 November 2014, 02:55:24 UTC
7982834 add NEWS note for #22921 24 November 2014, 02:15:31 UTC
6fa40c4 fix versionchanged version 24 November 2014, 02:13:55 UTC
31aa69e allow hostname to be passed to SSLContext even if OpenSSL doesn't support SNI (closes #22921) Patch from Donald Stufft. 24 November 2014, 02:13:31 UTC
88922db fix this test when sizeof(long) < sizeof(size_t) 23 November 2014, 19:17:57 UTC
c6b6ab0 remove strange casts 23 November 2014, 18:58:54 UTC
b0609ec remove py3k warning guard 23 November 2014, 17:52:46 UTC
fcfb18e allow passing cert/ssl information to urllib2.urlopen and httplib.HTTPSConnection This is basically a backport of issues #9003 and #22366. 23 November 2014, 17:42:45 UTC
5f6b89b initialize _makefile_refs earlier so things don't blow up when close() is called in the constructor 23 November 2014, 17:16:48 UTC
95b6164 Backport disabling of SSLv3 in ssl._create_stdlib_context() (issue #22638). The backport currently doesn't achieve anything since the function isn't used (yet). 17 October 2014, 17:28:30 UTC
86b36e5 Fix 2to3 reference link in pyporting.rst. 23 November 2014, 00:03:40 UTC
ea49a02 Remove line breaks in OS X installer README screen. 22 November 2014, 22:35:43 UTC
074d391 Add downloads page link to OS X installer README screens. 22 November 2014, 22:17:05 UTC
138ec8c Issue #17293: socket.gethostbyname() can raise an exception of FreeBSD. 21 November 2014, 19:54:43 UTC
fc419fb Add regression issue number to Misc/NEWS entry. 21 November 2014, 01:05:06 UTC
b9a4501 Issue #21963: backout issue #1856 patch (avoid crashes and lockups when daemon threads run while the interpreter is shutting down; instead, these threads are now killed when they try to take the GIL), as it seems to break some existing code. 21 November 2014, 01:04:21 UTC
527d4ac Issue #22827: Backport the new Distributing and Instaling Docs from 3.4 20 November 2014, 14:38:31 UTC
3f1d0b3 Issue 22878: PEP 477 - "make install" and "make altinstall" integration The backport of ensurepip to 2.7.9 allows pip to optionally be installed or upgraded using the bundled pip provided by the new ensurepip module. The option can be specified persistently using the configure option: ./configure --with-ensurepip[=upgrade|install|no] It can also be overridden on either the "install" or "altinstall" targets: make [alt]install ENSUREPIP=[upgrade|install|no] For Python 2, the default option is "no" (do not install pip). 20 November 2014, 10:11:03 UTC
a86c091 Issue #22453: Fexed reference leaks when format error messages in ceval.c. Warn against the use of leaking macro PyObject_REPR(). 18 November 2014, 22:11:05 UTC
ead2f5a Issue #18637: Fixed an error in _PyNode_SizeOf declaration. Patch by Roumen Petrov. 18 November 2014, 15:29:47 UTC
f9b2aa2 Issue #22193: Fixed integer overflow error in sys.getsizeof(). Fixed an error in _PySys_GetSizeOf declaration. 15 November 2014, 11:21:01 UTC
af62790 Update OS X installer documentation files for 2.7.9. 15 November 2014, 02:57:13 UTC
3010182 Issue #22877: PEP 477 - OS X installer for 2.7.9 now installs pip. 15 November 2014, 02:53:59 UTC
05e7c9e Fix description. 14 November 2014, 10:20:07 UTC
96c4de9 Closes #22868: make example less ambiguous. 14 November 2014, 10:12:53 UTC
01bd3c1 Close #22300 by tweaking 2.7.9 What's New announcements 14 November 2014, 10:05:04 UTC
2d14270 Issue #22850: Backport ensurepip Windows installer changes to 2.7 13 November 2014, 03:02:20 UTC
f44b9c4 Define a __hash__ to quiet down a -3 warning 11 November 2014, 17:32:57 UTC
3ecc8db Upgrade setuptools to 7.0 11 November 2014, 15:53:50 UTC
8aaff54 Implement PEP 477 - Backport ensurepip (PEP 453) to 2.7 * Backports ensurepip to the 2.7 branch * Backports some of the improved documentation to the 2.7 branch. * Adds a private backport of the 3.x mock library as test._mock_backport to enable saner testing of ensurepip. Key Differences from 3.x: * Ensurepip does not have any Makefile integration, specifically it is not ran by default in the Makefile. * There is no venv module in 2.7, so downstream distributors can completely disable ensurepip, ideally with a message redirecting to the correct way to install pip. * To match the ``python`` command in 2.7, ensurepip will install the unversioned ``pip`` command as well. * No-op and hide --default-pip and add --no-default-pip to restore the 3.x behavor on 2.7. 11 November 2014, 15:24:11 UTC
04eee63 Issue #22845: Improved formatting of dis documentation. 11 November 2014, 08:02:57 UTC
e927757 Issue #12728: Different Unicode characters having the same uppercase but different lowercase are now matched in case-insensitive regular expressions. 10 November 2014, 10:37:02 UTC
069bdcb Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian platforms. 10 November 2014, 08:42:06 UTC
3454941 Use internal links where possible 10 November 2014, 01:25:42 UTC
ccae479 Issue 22830: Clarify docs for functools.cmp_to_key(). 10 November 2014, 01:10:17 UTC
fb136d1 Remove unused import 08 November 2014, 06:47:30 UTC
c4d2760 Silence the failure of test_pyclbr after adding a property in sre_parse (issue #814253). 07 November 2014, 20:31:54 UTC
15ea870 Issues #814253, #9179: Group references and conditional group references now work in lookbehind assertions in regular expressions. 07 November 2014, 19:43:45 UTC
b4f3d80 Backported tests for issue #22406. 07 November 2014, 12:07:43 UTC
4535b11 Issue #17293: uuid.getnode() now determines MAC address on AIX using netstat. Based on patch by Aivars Kalvāns. 07 November 2014, 10:19:23 UTC
7a02582 Issue #22769: Fixed ttk.Treeview.tag_has() when called without arguments. 07 November 2014, 10:02:11 UTC
a6a8a4f merge heads 06 November 2014, 13:56:47 UTC
6246f2a #22650: test suite: load Unicode test data files from www.pythontest.net 06 November 2014, 13:37:49 UTC
9dcab59 fix test where sizeof(long) != sizeof(int) 06 November 2014, 05:52:58 UTC
b3067a2 Fixes path to patchlevel.py in doc/make.bat 06 November 2014, 04:13:46 UTC
31221a7 Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (large structs). Patch by mattip 06 November 2014, 03:16:05 UTC
a1137fb Closes #22525: clarify documentation for ast.literal_eval(). 05 November 2014, 19:20:28 UTC
9580510 use pythontest.net for url fragment test 05 November 2014, 16:27:14 UTC
57b00ed Issue #19753: Fix test_gdb on SystemZ buildbot, ignore warnings 05 November 2014, 14:07:18 UTC
06c1497 Issue #22773: fix failing test with old readline versions due to issue #19884. 04 November 2014, 13:52:10 UTC
93c4133 allow keyfile argument to be None (closes #22787) 04 November 2014, 02:12:05 UTC
04439fd test that keyfile can be None 04 November 2014, 02:05:01 UTC
186c5f0 Issue #22775: Fixed unpickling of Cookie.SimpleCookie with protocol 2. Patch by Tim Graham. 02 November 2014, 20:35:47 UTC
009352a #22751: fix test___all__ warning about modified environment in the tests. Patch by Michael Cetrulo. 02 November 2014, 17:08:35 UTC
21a2350 Issue #17896: Move Windows external lib sources from .. to externals. 02 November 2014, 03:34:09 UTC
33db23f Issue #22770: Prevent some Tk segfaults on OS X when running gui tests. When running tests in subprocesses with the regrtest -j option, a bug in Cocoa Tk can result in a Tcl segfault. Avoid the problem by forcing Tk to fully initialize as an OS X gui process before destroying the Tcl instance and creating another. (Original patch by Serhiy Storchaka) 02 November 2014, 02:26:45 UTC
247b644 Issue #17717: Pull NASM from svn.python.org for OpenSSL build. 01 November 2014, 22:11:08 UTC
a79d6f4 Brought excluded code into the scope of a try block in SysLogHandler.emit(). 01 November 2014, 19:56:13 UTC
409062c Closes #22772: fix __ifloordiv__ and __itruediv__ docstring. 31 October 2014, 12:12:57 UTC
e9e54ae Issue #17381: Fixed ranges handling in case-insensitive regular expressions. 31 October 2014, 11:53:21 UTC
c04fcd4 Backported the optimization of compiling charsets in regular expressions (issue #19329). This is needed to apply the patch from issue #17381. 31 October 2014, 11:34:06 UTC
34d1597 #22613: fix several factual errors in builtin docs (thanks Jacques Ducasse) 31 October 2014, 08:41:46 UTC
5003801 #22613: minor other fixes in library docs (thanks Jacques Ducasse) 31 October 2014, 09:25:48 UTC
fb52e38 #22613: document Cmd.cmdqueue (thanks Jacques Ducasse) 31 October 2014, 09:25:38 UTC
c182f88 minor grammar fixes (from docs@python.org) 31 October 2014, 08:29:38 UTC
e969b1b Fixed compile error in issue #22410. The _locale module is optional. 30 October 2014, 23:31:33 UTC
d4c7290 Issue #22410: Module level functions in the re module now cache compiled locale-dependent regular expressions taking into account the locale. 30 October 2014, 22:53:19 UTC
6556698 rstlint: make the "html leaked markup" regex a bit less sensitive 30 October 2014, 21:49:06 UTC
d4754b0 rstlint: add more directives we use 30 October 2014, 21:35:55 UTC
f3f5052 Doc: fix default role usage (except in unittest mock docs) 30 October 2014, 21:26:26 UTC
78be2f4 Issue #8876: distutils now falls back to copying files when hard linking doesn't work. This allows use with special filesystems such as VirtualBox shared folders. 30 October 2014, 18:37:07 UTC
0f5d6c0 Fixing broken links in doc, part 4: some more breaks and redirects 29 October 2014, 09:57:37 UTC
cea2725 linkcheck: ignore issue URLs and PEP URLs (the latter until the PEPs are on www.python.org again). 29 October 2014, 09:57:01 UTC
97ae466 Fixing broken links in doc, part 3: the rest 29 October 2014, 09:26:56 UTC
0ffb462 Fixing broken links in doc, part 2: howto/ 29 October 2014, 08:37:43 UTC
fa55a31 Fixing broken links in doc, part 1: faq/ 29 October 2014, 08:24:54 UTC
ea64fb7 Fix external links to docs.python.org to use internal links instead. 29 October 2014, 08:00:30 UTC
66e624b Remove now-dead link to IDLE debugger doc and add PyCharm to the commercial IDEs. 29 October 2014, 07:55:14 UTC
00da140 Update "where is python.org hosted" FAQ. 29 October 2014, 07:52:43 UTC
06f3b3b Use https:// URLs when referring to python.org hosts. 29 October 2014, 07:36:35 UTC
42bf486 Use https:// URLs in the HTML templates. 29 October 2014, 07:36:15 UTC
23dd65b Doc readme: Fix markup, use https:// URLs. 29 October 2014, 07:18:43 UTC
ecc0cc0 Adjust the author field of the .tex files to reflect that docs are now maintained by all of us 29 October 2014, 07:14:04 UTC
160cbce Move Sphinx templates and extensions to their own subdirs. 29 October 2014, 07:41:02 UTC
8a91c5b Fix link to ABOP install chapter. 28 October 2014, 22:00:25 UTC
back to top