summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Issue #24351: Clarify what is meant by "identifier" in the context ofBarry Warsaw2015-06-092-6/+11
| | | | string.Template instances.
* #23891: correctly refer to PyPI as "Python Package Index"Tal Einat2015-06-091-3/+3
|
* Issue #24408: Added more tkinter.Font tests.Serhiy Storchaka2015-06-091-5/+65
|
* #23891: remove extra wordsAndrew Kuchling2015-06-081-1/+1
|
* #23891: add a section to the Tutorial describing virtual environments and pipAndrew Kuchling2015-06-082-0/+198
|
* Add link to pyvideoorgAndrew Kuchling2015-06-071-0/+3
|
* #23891: rework discussion of python-list a bitAndrew Kuchling2015-06-071-8/+5
|
* #23891: describe a few more modules in the tutorialAndrew Kuchling2015-04-101-7/+24
|
* Issue #24299: Fixed test__locale on Solaris.Serhiy Storchaka2015-06-081-2/+3
|
* that this is "for Python" is obviousBenjamin Peterson2015-06-061-1/+0
|
* Issue #23659: Document **fmtparams in csv.register_dialect docstring.Berker Peksag2015-06-052-2/+2
| | | | Initial patch by Brandon Milam.
* Issue #24148: Fix incorrect Stats.sort_stats() example.Berker Peksag2015-06-051-1/+1
| | | | | | "cum" is not a valid argument. Patch by Brandon Milam.
* Issue 24366: Merge 3.3Yury Selivanov2015-06-021-1/+1
|\
| * Issue 24366: Indent code (thanks to li4ick for reporting).Yury Selivanov2015-06-021-1/+1
| |
* | Upgrade pip to 7.0.3 and setuptools to 17.0Donald Stufft2015-06-023-2/+2
| |
* | Closes #24267 - Does not check version on ensurepip uninstallDonald Stufft2015-06-022-6/+21
| | | | | | | | | | | | Ensure that the uninstall helper for Windows passes the proper flags to pip to prevent it from checking PyPI if the pip that we're currently attempting to uninstall is the latest verison.
* | Issue #24357: use example.org insteadNed Deily2015-06-021-4/+4
| |
* | Issue #24357: fix real typoNed Deily2015-06-021-1/+1
| |
* | Issue #24357: fix typoNed Deily2015-06-021-1/+1
| |
* | Issue #24357: Change host in socket.getaddrinfo example to one thatNed Deily2015-06-021-4/+6
| | | | | | | | does support IPv6 and IPv4; www.python.org currently does not.
* | Issue 24017: Fix asyncio.CoroWrapper to support 'async def' coroutinesYury Selivanov2015-06-011-1/+1
| |
* | Issue 24004: Support Awaitables (pep 492) in @asyncio.coroutine decoratorYury Selivanov2015-05-311-2/+13
| |
* | Issue 22357: Document __qualname__ in inspect.rstYury Selivanov2015-05-301-0/+11
| |
* | Issue #5633: Fixed timeit when the statement is a string and the setup is not.Serhiy Storchaka2015-05-303-3/+13
| |
* | Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-3010-36/+83
| | | | | | | | | | PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly.
* | Issue #24326: Fixed audioop.ratecv() with non-default weightB argument.Serhiy Storchaka2015-05-293-1/+21
| | | | | | | | Original patch by David Moore.
* | asyncio: Drop some useless code from tasks.py.Yury Selivanov2015-05-281-7/+2
| | | | | | | | See also issue 24017.
* | Issue 24298: Fix signature() to properly unwrap wrappers around bound methodsYury Selivanov2015-05-283-0/+24
| |
* | update for 3.6 emergingBenjamin Peterson2015-05-271-1/+2
| |
* | Issue 24304: Fix broken license link in FAQ.Ned Deily2015-05-271-1/+1
| |
* | Moved Misc/NEWS entries to correct section and fix formatting.Serhiy Storchaka2015-05-261-7/+7
| |
* | merge 3.3Benjamin Peterson2015-05-261-7/+3
|\ \ | |/
| * merge 3.2Benjamin Peterson2015-05-261-7/+3
| |\
| | * keep distutils version in sync with python version automaticallyBenjamin Peterson2015-05-261-7/+3
| | |
* | | Issue #23840: tokenize.open() now closes the temporary binary file on error toVictor Stinner2015-05-253-6/+21
| | | | | | | | | | | | fix a resource warning.
* | | Remove UTF-8 BOMs.Serhiy Storchaka2015-05-252-2/+2
| | |
* | | whitespaceTerry Jan Reedy2015-05-231-1/+1
| | |
* | | Add pointer to IDLE what's new file.Terry Jan Reedy2015-05-231-0/+10
| | |
* | | Update idlelib/NEWS.txt.Terry Jan Reedy2015-05-231-0/+21
| | |
* | | Add NEWS item for Idle.Terry Jan Reedy2015-05-231-0/+6
| | |
* | | Make expression legal python by adding '1'.Terry Jan Reedy2015-05-231-1/+1
| | |
* | | merge 3.3 (#22931)Benjamin Peterson2015-05-233-3/+19
|\ \ \ | |/ /
| * | merge 3.2 (#22931)Benjamin Peterson2015-05-233-3/+19
| |\ \ | | |/
| | * allow square brackets in cookie values (closes #22931)Benjamin Peterson2015-05-233-3/+23
| | |
* | | Upgrade pip to 7.0.1Donald Stufft2015-05-232-1/+1
| | |
* | | Issue #24219: Remove duplicate literal in docs.Raymond Hettinger2015-05-221-2/+1
| | |
* | | Issue #24257: Fixed incorrect uses of PyObject_IsInstance().Serhiy Storchaka2015-05-226-8/+36
| | | | | | | | | | | | | | | Fixed segmentation fault in sqlite3.Row constructor with faked cursor type. Fixed system error in the comparison of faked types.SimpleNamespace.
* | | Upgrade pip to 7.0 and setuptools to 16.0Donald Stufft2015-05-223-2/+2
| | |
* | | Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__Yury Selivanov2015-05-213-3/+21
| | |
* | | Fixed issue number for issue #22939.Serhiy Storchaka2015-05-211-1/+1
| | |