summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Docs: Add note regarding "reversed" flag in heapq.merge (#300)Adam Niederer2017-03-051-1/+3
| | | | | | | The docs for `heapq.merge` are a little misleading. Iterables passed into heapq.merge with the reversed flag enabled must be sorted from largest to smallest to achieve the desired sorting effect, but the previous paragraph states that they should be sorted from smallest to largest.
* distutils docs: Fix a typo (GH-470)Mariatta2017-03-051-1/+1
| | | instanciated -> instantiated
* remove merge=union attribute for Misc/NEWS (GH-460)INADA Naoki2017-03-041-2/+0
| | | | | | Github doesn't support it (ref. isaacs/github#487). So it can't ease conflict on Github. Additionally, it can make trouble when cherry-pick. (ref. GH-212)
* Correct spelling "instanciate" (#465)J. W2017-03-041-2/+2
|
* bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS. (#462)Ned Deily2017-03-043-0/+9
| | | | | | | * bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS Skip some tests of select.poll when running on macOS due to unresolved issues with the underlying system poll function on some macOS versions.
* bpo-29572: Update macOS installer build to OpenSSL 1.0.2k (#457)Ned Deily2017-03-042-4/+4
|
* bpo-29550: Temporarily skip "make touch" in Mac installer build. (#456)Ned Deily2017-03-041-6/+7
|
* Fixes git command (#451)Steve Dower2017-03-041-1/+1
|
* bpo-27593: Updates Windows build to use information from git (#262)Steve Dower2017-03-043-18/+18
| | | | * bpo-27593: Updates Windows build to use information from git
* bpo-27593: Get SCM build info from git instead of hg. (#446)Ned Deily2017-03-049-78/+84
| | | | | | | sys.version and the platform module python_build(), python_branch(), and python_revision() functions now use git information rather than hg when building from a repo. Based on original patches by Brett Cannon and Steve Dower.
* bpo-29572: Update Windows build to OpenSSL 1.0.2k (GH-439)Zachary Ware2017-03-034-3/+5
|
* bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes (#238)Ivan Levkivskyi2017-03-031-2/+53
|
* bpo-29709: Improve Boolean Operations documentation (#433)Mariatta2017-03-031-2/+2
| | | Change False into false, and True into true.
* bpo-29455: Mention coverage.py in trace module documentation (#261)Marco Buttu2017-03-031-0/+6
|
* bpo-29623: Make PathLike objects work with ConfigParser.read() (#242)David Ellis2017-03-034-8/+31
|
* Fixed a typo in the comment in Include/pyport.h (#425)Joseph Shen2017-03-031-1/+1
| | | #ifdef HAVE_DECLSPEC_DLL / #endif mismatch
* Fix config file syntax (hopefully).Stefan Krah2017-03-031-2/+1
|
* Find my own reviewers for PRs.Stefan Krah2017-03-031-1/+2
|
* bpo-9303: Migrate sqlite3 module to _v2 API to enhance performance (#359)Aviv Palivoda2017-03-036-9/+30
|
* bpo-29693: Fix for DeprecationWarning in test_import (#421)Anish Shah2017-03-031-2/+2
| | | Patch by Anish Shah.
* asyncio: Optimize _get_running_loop() to call getpid() only when there's a loopYury Selivanov2017-03-031-2/+3
|
* bpo-28963: Fix out of bound iteration in ↵Yury Selivanov2017-03-033-1/+33
| | | | asyncio.Future.remove_done_callback/C (#408)
* asyncio: Fix trailing whitespace/code styleYury Selivanov2017-03-032-6/+8
|
* bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405)Seth M. Larson2017-03-033-2/+40
|
* bpo-28893: Set __cause__ for errors in async iteration protocol (#407)Yury Selivanov2017-03-033-3/+44
|
* bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)Yury Selivanov2017-03-034-9/+29
|
* bpo-29703: asyncio: Fix creating new event loops in child processes. (#404)Yury Selivanov2017-03-034-2/+36
|
* Don't require the Python org to mention someone (GH-393)Donald Stufft2017-03-021-2/+1
| | | | Previously we configured the mention-bot to only mention people who are members of the Python organization. However, this doesn't currently work if members don't have their membership public. Instead we will configure mention-bot to poke anyone, even non-members.
* bpo-28129: fix ctypes crashes (#386)orenmn2017-03-027-9/+87
| | | | | | | | | | | | * init commit, with initial tests for from_param and fields __set__ and __get__, and some additions to from_buffer and from_buffer_copy * added the rest of tests and patches. probably only a first draft. * removed trailing spaces * replace ctype with ctypes in error messages * change back from ctypes instance to ctype instance
* bpo-29697: Don't use OpenSSL <1.0.2 fallback on 1.1+ (GH-395)Donald Stufft2017-03-021-2/+2
|
* Add Python version since deprecation in base64 methods. (#33)Matthias Bussonnier2017-03-023-6/+25
| | | | | | Allow developers to not have to either test on N Python versions or looked through multiple versions of the docs to know whether they can easily update.
* fix an error message and a comment in _testcapimodule.c (GH-392)orenmn2017-03-021-2/+3
|
* bpo-27200: fix configparser, copyreg and ctypes doctests (#240)Marco Buttu2017-03-023-15/+22
|
* bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#376)Brian Coleman2017-03-022-10/+17
| | | | | | | | allocated. On PyMem_Realloc failure, _PyCode_SetExtra should free co_extra if co_extra->ce_extras could not be allocated. On PyMem_Realloc success, _PyCode_SetExtra should set all unused slots in co_extra->ce_extras to NULL.
* In SSL module version examples, don't use a legacy version. (#381)Alex Gaynor2017-03-021-4/+4
|
* bpo-29176 Use tmpfile() in curses module (#235)Christian Heimes2017-03-021-37/+15
| | | | | | | | | | | The curses module used mkstemp() + fopen() to create a temporary file in /tmp. The /tmp directory does not exist on Android. The tmpfile() function simplifies the task a lot. It creates a temporary file in a correct directory, takes care of cleanup and returns FILE*. tmpfile is supported on all platforms (C89, POSIX 2001, Android, Windows). Signed-off-by: Christian Heimes <christian@python.org>
* fix subprocess on Windows (#391)Benjamin Peterson2017-03-021-1/+1
|
* require uuid_generate_time_safe for all tests of it (#390)Benjamin Peterson2017-03-021-7/+8
| | | The way mocking is written in these tests, we need to have the underlying function around.
* allow path-like objects to be cwd on windows (#389)Benjamin Peterson2017-03-021-1/+1
| | | #157 added the test, but it's currently (correctly) broken on windows.
* correct check for _uuid_generate_time (#388)Benjamin Peterson2017-03-021-1/+1
| | | If ctypes is not available, _uuid_generate_time will be None not its restype attribute.
* Revert "make the locale_flag fallback code work again (#375)" (#387)Benjamin Peterson2017-03-021-2/+3
| | | This reverts commit 43f5df5bfaea5a07c913d12cb92f78f997feb371.
* Don't mention Guido automatically for reviews from the mention bot (GH-385)Brett Cannon2017-03-011-1/+1
| | | He's written so much code he gets mentioned **a lot**.
* Fixes bpo-29680: Older gdb does not have gdb.error. (#363)Lev Abalkin2017-03-011-1/+1
| | | This change is required to make python-dbg.py compatible with GDB versions before 7.3.
* bpo-29615: SimpleXMLRPCDispatcher no longer chains KeyError (#260)Petr Motejlek2017-03-013-20/+117
| | | | (or any other exception) to exception(s) raised in the dispatched methods. Patch by Petr Motejlek.
* email.compat32-message.rst: Fix typo in the word `message` (GH-379)Mariatta2017-03-011-3/+3
|
* bpo-29684: Fix regression of PyEval_CallObjectWithKeywords (GH-87)INADA Naoki2017-03-012-6/+11
| | | It should raise TypeError when kwargs is not a dict.
* Tweak subprocess.STARTUPINFO documentation (#347)Berker Peksag2017-03-011-5/+7
| | | | * Document STARTUPINFO constructor * Move versionchanged directive to above of attributes
* make the locale_flag fallback code work again (#375)Benjamin Peterson2017-03-011-3/+2
|
* blacklist myself from mention-bot; it is annoying (#373)Benjamin Peterson2017-03-011-1/+1
|
* use select instead of _opcode for import test (#372)Benjamin Peterson2017-03-011-5/+5
|