summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Issue #17219: Add library build dir for Python extension cross-builds.doko@ubuntu.com2014-10-022-1/+3
|\
| * - Issue #17219: Add library build dir for Python extension cross-builds.doko@ubuntu.com2014-10-022-1/+3
| |
* | - Issue #18096: Fix library order returned by python-config.doko@ubuntu.com2014-10-023-3/+6
|\ \ | |/
| * - Issue #18096: Fix library order returned by python-config.doko@ubuntu.com2014-10-023-3/+6
| |
* | Issue #20076: Added non derived UTF-8 aliases to locale aliases table.Serhiy Storchaka2014-10-013-4/+13
|\ \ | |/ | | | | The makelocalealias.py script no longer ignores UTF-8 mapping.
| * Issue #20076: Added non derived UTF-8 aliases to locale aliases table.Serhiy Storchaka2014-10-012-0/+11
| |
* | Null mergeSerhiy Storchaka2014-10-010-0/+0
|\ \ | |/
| * Issue #20079: Added locales supported in glibc 2.18 to locale alias table.Serhiy Storchaka2014-10-012-0/+101
| |
* | Issue #20079: Added locales supported in glibc 2.18 to locale alias table.Serhiy Storchaka2014-10-013-1/+148
| | | | | | | | | | The makelocalealias.py script now can parse the SUPPORTED file from glibc sources and supports command line options for source paths.
* | Merge with 3.4Terry Jan Reedy2014-10-011-5/+8
|\ \ | |/
| * Issue 22492: Be explicit that print does not support binary mode files.Terry Jan Reedy2014-10-011-5/+8
| | | | | | | | Original patch by Georg Brandl.
* | merge with 3.4Georg Brandl2014-10-011-446/+0
|\ \ | |/
| * Remove old overridden version of a Sphinx CSS file.Georg Brandl2014-10-011-446/+0
| | | | | | | | All Python-specific styling is now in the theme anyway.
* | merge with 3.4Georg Brandl2014-10-011-4/+4
|\ \ | |/
| * Make pydoctheme compatible with Sphinx 1.3 HTML output changes.Georg Brandl2014-10-011-4/+4
| |
* | Closes #20218: Added convenience methods read_text/write_text and read_bytes/Georg Brandl2014-10-014-0/+114
| | | | | | | | | | | | write_bytes to pathlib.Path objects. Thanks to Christopher Welborn and Ram Rachum for original patches.
* | Update 3.5 Idle News up to 3.4.2 changes.Terry Jan Reedy2014-10-011-0/+52
|\ \ | |/
| * Update Idle news for 3.4.2 (and 3.4.1).Terry Jan Reedy2014-10-011-0/+57
| |
* | Issue #16537: Use the new *default* parameter of max().Berker Peksag2014-10-011-3/+1
|\ \ | |/
| * Issue #16537: Use the new *default* parameter of max().Berker Peksag2014-10-011-3/+1
| |
* | null mergeNed Deily2014-10-010-0/+0
|\ \ | |/
| * Fix overlooked conf.py setting in flattening of Doc directory.Ned Deily2014-10-011-1/+1
| |
* | Merge #21739: mention subtle difference between loops and listcomps in tutorial.R David Murray2014-10-011-3/+8
|\ \ | |/
| * #21739: mention subtle difference between loops and listcomps in tutorial.R David Murray2014-10-011-3/+8
| | | | | | | | | | | | | | | | | | | | We don't want to go into a full explanation of scopes at this point in the tutorial, so we just mention that the loop creates or overwrites a persistent variable while the listcomp doesn't. Not mentioning this would lead someone to incorrectly assume loops and listcomps were *completely* equivalent, which would confuse them later. Original patch by Rose Ames, tweaked to remove the word 'scope'.
* | Merge: #22512: move distutils rpm test's .rpmdb to testing tmpdir.R David Murray2014-10-011-0/+3
|\ \ | |/
| * #22512: move distutils rpm test's .rpmdb to testing tmpdir.R David Murray2014-10-011-0/+3
| | | | | | | | Patch by Francis MB.
* | Issue #22333: test_threaded_import now displays elapsed time in verbose mode.Victor Stinner2014-09-301-0/+4
| |
* | Issue #22333: Extend timeout in test_threaded_importVictor Stinner2014-09-301-1/+1
| | | | | | | | | | | | Check if the sporadic failure is related to a timeout. The test just failed on the buildbot "x86 Windows7 3.x": 1 thread done / 20 (the 'done' condition was not signaled because 1 < 20).
* | Merge with 3.4Terry Jan Reedy2014-09-301-1/+1
|\ \ | |/
| * Issue 22465: grammar, number agreement.Terry Jan Reedy2014-09-301-1/+1
| |
* | merge with 3.4Georg Brandl2014-09-300-0/+0
|\ \ | |/
| * Move Doc/tools/sphinxext content to Doc/tools, there is no need for the ↵Georg Brandl2014-09-3023-89/+8
| | | | | | | | nested subdirectory anymore.
* | Move Doc/tools/sphinxext content to Doc/tools, there is no need for the ↵Georg Brandl2014-09-3023-90/+9
| | | | | | | | nested subdirectory anymore.
* | merge with 3.4Georg Brandl2014-09-301-1/+0
|\ \ | |/
| * Dont define an empty SPHINXOPTS, which overrides a definition from the ↵Georg Brandl2014-09-301-1/+0
| | | | | | | | environment.
* | merge with 3.4Georg Brandl2014-09-302-1/+3
|\ \ | |/
| * Prepare sphinx extensions for 1.3.Georg Brandl2014-09-302-1/+3
| |
* | merge 3.4 (#22528)Benjamin Peterson2014-09-301-0/+3
|\ \ | |/
| * add link to pdb source (closes #22528)Benjamin Peterson2014-09-301-0/+3
| |
* | Reorganize C API docs of the exception APIAntoine Pitrou2014-09-301-151/+191
| |
* | Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` ↵Antoine Pitrou2014-09-307-10/+39
| | | | | | | | but accepting a `va_list` argument.
* | (Merge 3.4) Issue #22448: asyncio, cleanup _run_once(), only iterate once toVictor Stinner2014-09-301-4/+7
|\ \ | |/ | | | | remove delayed calls that were cancelled.
| * Issue #22448: asyncio, cleanup _run_once(), only iterate once to remove delayedVictor Stinner2014-09-301-4/+7
| | | | | | | | calls that were cancelled.
* | remove merge goop from f86fde20e9ceBenjamin Peterson2014-09-301-65/+0
| |
* | Remove pointless "vile hack" that can cause the build step to fail when some ↵Antoine Pitrou2014-09-302-20/+2
| | | | | | | | | | | | extension modules can't be imported. See issue #5309 for the build failures, issue #458343 for the original motivation.
* | (Merge 3.4) faulthandler: test_gil_released() now uses _sigsegv() instead ofVictor Stinner2014-09-302-17/+25
|\ \ | |/ | | | | | | | | | | _read_null(), because _read_null() cannot be used on AIX. On AIX, reading from NULL is allowed: the first page of memory is a mapped read-only on AIX. _read_null() and _sigabrt() don't accept parameters.
| * faulthandler: test_gil_released() now uses _sigsegv() instead of _read_null(),Victor Stinner2014-09-302-17/+25
| | | | | | | | | | because _read_null() cannot be used on AIX. On AIX, reading from NULL is allowed: the first page of memory is a mapped read-only on AIX.
| * faulthandler: _sigsegv() and _sigabrt() don't accept parametersVictor Stinner2014-09-301-2/+2
| |
* | faulthandler: suppress crash reporter directly in test functions written toVictor Stinner2014-09-301-6/+41
| | | | | | | | crash.
* | (Merge 3.4) Issue #22396: On 32-bit AIX platform, don't exposeVictor Stinner2014-09-302-4/+16
|\ \ | |/ | | | | | | os.posix_fadvise() nor os.posix_fallocate() because their prototypes in system headers are wrong.