Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-29697: Don't use OpenSSL <1.0.2 fallback on 1.1+ (GH-395) | Donald Stufft | 2017-03-02 | 1 | -2/+2 |
| | |||||
* | Add Python version since deprecation in base64 methods. (#33) | Matthias Bussonnier | 2017-03-02 | 3 | -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) | orenmn | 2017-03-02 | 1 | -2/+3 |
| | |||||
* | bpo-27200: fix configparser, copyreg and ctypes doctests (#240) | Marco Buttu | 2017-03-02 | 3 | -15/+22 |
| | |||||
* | bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#376) | Brian Coleman | 2017-03-02 | 2 | -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 Gaynor | 2017-03-02 | 1 | -4/+4 |
| | |||||
* | bpo-29176 Use tmpfile() in curses module (#235) | Christian Heimes | 2017-03-02 | 1 | -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 Peterson | 2017-03-02 | 1 | -1/+1 |
| | |||||
* | require uuid_generate_time_safe for all tests of it (#390) | Benjamin Peterson | 2017-03-02 | 1 | -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 Peterson | 2017-03-02 | 1 | -1/+1 |
| | | | #157 added the test, but it's currently (correctly) broken on windows. | ||||
* | correct check for _uuid_generate_time (#388) | Benjamin Peterson | 2017-03-02 | 1 | -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 Peterson | 2017-03-02 | 1 | -2/+3 |
| | | | This reverts commit 43f5df5bfaea5a07c913d12cb92f78f997feb371. | ||||
* | Don't mention Guido automatically for reviews from the mention bot (GH-385) | Brett Cannon | 2017-03-01 | 1 | -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 Abalkin | 2017-03-01 | 1 | -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 Motejlek | 2017-03-01 | 3 | -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) | Mariatta | 2017-03-01 | 1 | -3/+3 |
| | |||||
* | bpo-29684: Fix regression of PyEval_CallObjectWithKeywords (GH-87) | INADA Naoki | 2017-03-01 | 2 | -6/+11 |
| | | | It should raise TypeError when kwargs is not a dict. | ||||
* | Tweak subprocess.STARTUPINFO documentation (#347) | Berker Peksag | 2017-03-01 | 1 | -5/+7 |
| | | | | * Document STARTUPINFO constructor * Move versionchanged directive to above of attributes | ||||
* | make the locale_flag fallback code work again (#375) | Benjamin Peterson | 2017-03-01 | 1 | -3/+2 |
| | |||||
* | blacklist myself from mention-bot; it is annoying (#373) | Benjamin Peterson | 2017-03-01 | 1 | -1/+1 |
| | |||||
* | use select instead of _opcode for import test (#372) | Benjamin Peterson | 2017-03-01 | 1 | -5/+5 |
| | |||||
* | weaken test_from_import_missing_attr_has_name_and_path regular expression (#371) | Benjamin Peterson | 2017-03-01 | 1 | -1/+1 |
| | | | Windows uses backslashes for separators. | ||||
* | Clarify exception handler scope in contextlib | amosonn | 2017-03-01 | 1 | -1/+2 |
| | | | Moved explicit raise from inside try to try...else. | ||||
* | Fix syntax error in .mention-bot (#361) | Berker Peksag | 2017-03-01 | 1 | -1/+1 |
| | |||||
* | Fixed a handful of typos (GH-343) | Alex Gaynor | 2017-03-01 | 4 | -7/+7 |
| | |||||
* | correct documentation for enum.html (#358) | Kartik Anand | 2017-02-28 | 1 | -2/+2 |
| | |||||
* | Add the mention-bot configuration file (GH-352) | Donald Stufft | 2017-02-28 | 1 | -0/+12 |
| | | | Discussed at https://github.com/python/core-workflow/issues/32. | ||||
* | bpo-7769: enable xmlrpc.server.SimpleXMLRPCDispatcher.register_function used ↵ | Xiang Zhang | 2017-02-28 | 5 | -20/+80 |
| | | | | as decorator (GH-231) | ||||
* | README: move TOC to top (GH-355) | INADA Naoki | 2017-02-28 | 1 | -2/+2 |
| | |||||
* | README: Use h3 headings for build sections, and add TOC (GH-64) | Evan Klitzke | 2017-02-28 | 1 | -2/+3 |
| | |||||
* | bpo-29661: fix contradiction in timeit.Timer.autorange's docstring (GH-331) | Xiang Zhang | 2017-02-28 | 1 | -1/+1 |
| | |||||
* | bpo-24241: Add versionchanged directive to the documentation (#342) | Berker Peksag | 2017-02-27 | 1 | -1/+4 |
| | |||||
* | Use "Contributed by ..." style in whatsnew/3.7.rst (#339) | Berker Peksag | 2017-02-27 | 1 | -1/+2 |
| | |||||
* | Asyncio documentation: remove `self` from method signatures (GH-334) | Mariatta | 2017-02-27 | 1 | -3/+3 |
| | |||||
* | fix minor bug in pymalloc. (#335) | INADA Naoki | 2017-02-27 | 1 | -1/+1 |
| | | | reported by Alexis Lopez-Garcia. | ||||
* | bpo-29662: fix wrong indentation in timeit.Timer's doc (GH-332) | Xiang Zhang | 2017-02-27 | 1 | -10/+10 |
| | |||||
* | bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-236) | Xiang Zhang | 2017-02-27 | 3 | -0/+9 |
| | |||||
* | bpo-26184: import.rst: Improve versionchanged note (GH-325) | Mariatta | 2017-02-26 | 1 | -1/+1 |
| | |||||
* | bpo-28624: Add a test that checks that cwd parameter of Popen() accepts ↵ | Sayan Chowdhury | 2017-02-26 | 4 | -3/+21 |
| | | | | PathLike objects (#157) | ||||
* | bpo-26184: import.rst: Improve versionchanged note (GH-277) | Mariatta | 2017-02-26 | 1 | -2/+5 |
| | | | | Mention that an ImportError is raised when exec_module() is defined, but create_module() is not. | ||||
* | bpo-29121: Remove outdated documentation about transactions (#313) | Berker Peksag | 2017-02-26 | 1 | -8/+3 |
| | | | | Patch by Aviv Palivoda. | ||||
* | bpo-22594: Add a link to the regex module in re documentation (GH-241) | Marco Buttu | 2017-02-26 | 1 | -0/+6 |
| | |||||
* | bpo-28518: Start a transaction implicitly before a DML statement (#245) | Berker Peksag | 2017-02-26 | 5 | -11/+24 |
| | | | Patch by Aviv Palivoda. | ||||
* | bpo-29648: import.rst: Add reference to create_module() (GH-290) | Marco Buttu | 2017-02-26 | 1 | -1/+1 |
| | | | Add a reference to create_module(), in the first versionadded of section Loaders. | ||||
* | bpo-29110: add test for Aifc_write. (GH-293) | INADA Naoki | 2017-02-26 | 2 | -1/+13 |
| | | | follow up of GH-162 | ||||
* | bpo-28961: Address my comments from earlier code review (#305) | Berker Peksag | 2017-02-26 | 1 | -12/+3 |
| | |||||
* | bpo-29655: Fixed possible reference leaks in `import *`. (#301) | Matthias Bussonnier | 2017-02-26 | 1 | -1/+4 |
| | | | Patch by Matthias Bussonnier. | ||||
* | Fix small typos in introduction and datastructures of tutorial (GH-272) | Jim Fasarakis-Hilliard | 2017-02-25 | 2 | -5/+5 |
| | | | | | * Fix small typos in introduction and datastructures * Use iterable instead of L in the doc for list.extend | ||||
* | README.rst: Change the devguide url to docs.python.org/devguide (GH-295) | Mariatta | 2017-02-25 | 1 | -1/+1 |
| | |||||
* | README.rst: List out relevant links to the project (#283) | Mariatta | 2017-02-25 | 1 | -0/+9 |
| |