| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bpo-37134: Add PEP570 notation to the signature of byte{array}.translate ↵ | Pablo Galindo | 2019-06-07 | 1 | -2/+2 |
| | | | | | (GH-13874) | ||||
| * | bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH-13860) | Zackery Spytz | 2019-06-06 | 1 | -2/+4 |
| | | |||||
| * | Add importlib.metadata to what's new. (#13855) | Barry Warsaw | 2019-06-05 | 1 | -1/+4 |
| | | |||||
| * | bpo-37134: Use PEP570 syntax for sum() (GH-13851) | Pablo Galindo | 2019-06-06 | 1 | -3/+3 |
| | | |||||
| * | bpo-35551: encodings update (GH-11446) | Ashwin Ramaswami | 2019-06-05 | 1 | -1/+2 |
| | | |||||
| * | bpo-37134: Add PEP570 notation to the documentation (GH-13743) | Pablo Galindo | 2019-06-05 | 2 | -3/+3 |
| | | |||||
| * | bpo-33725, multiprocessing doc: rephase warning against fork on macOS (GH-13841) | Victor Stinner | 2019-06-05 | 1 | -2/+3 |
| | | | | Co-Authored-By: Barry Warsaw <barry@python.org> | ||||
| * | [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620) | Serhiy Storchaka | 2019-06-05 | 8 | -9/+9 |
| | | | | Turn deprecation warnings added in 3.8 into TypeError. | ||||
| * | bpo-26836: Document os.memfd_create() name parameter (GH-13838) | Victor Stinner | 2019-06-05 | 1 | -0/+7 |
| | | | | https://bugs.python.org/issue26836 | ||||
| * | Fix documentation (GH-13721) | Benjamin Yeh | 2019-06-05 | 1 | -0/+4 |
| | | | | Based on the source code https://github.com/python/cpython/blob/4a686504eb2bbf69adf78077458508a7ba131667/Lib/multiprocessing/pool.py#L755 AsyncResult.successful() raises a ValueError, not an AssertionError. | ||||
| * | Doc: Python 3.9 in sidebar and version switcher. (GH-13824) | Julien Palard | 2019-06-04 | 2 | -2/+4 |
| | | |||||
| * | Bump to 3.9.0a0 | Łukasz Langa | 2019-06-04 | 4 | -7/+7 |
| | | |||||
| * | Merge tag 'v3.8.0b1' | Łukasz Langa | 2019-06-04 | 1 | -1/+1 |
| |\ | | | | | | | Python 3.8.0b1 | ||||
| | * | Python 3.8.0b1v3.8.0b1 | Łukasz Langa | 2019-06-04 | 1 | -1/+1 |
| | | | |||||
| * | | bpo-35047: Update whatsnew/3.8 for better mock error message (GH-13746) | Petter Strandmark | 2019-06-04 | 1 | -0/+3 |
| | | | |||||
| * | | bpo-35805: Add parser for Message-ID email header. (GH-13397) | Abhilash Raj | 2019-06-04 | 1 | -13/+20 |
| |/ | | | | | | | | | | | | | * bpo-35805: Add parser for Message-ID header. This parser is based on the definition of Identification Fields from RFC 5322 Sec 3.6.4. This should also prevent folding of Message-ID header using RFC 2047 encoded words and hence fix bpo-35805. * Prevent folding of non-ascii message-id headers. * Add fold method to MsgID token to prevent folding. | ||||
| * | bpo-30699: Improve example on datetime tzinfo instances (GH-4290) | Mario Corchero | 2019-06-04 | 1 | -51/+60 |
| | | | | | | | | | | | | | | | | | | | | * Improve example on tzinfo instances Move from GMTX to TZX when naming the classes, as GMT1 might be rather confusing as seen in the reported issue. In addition, move to UTC over GMT and improve the tzname implementation. * Simplify datetime with tzinfo example Move the example in the documentation to just use timezone.utc and a user defined Kabul timezone rather than having two user defined timezones with DST. Kabul timezone is still interesting as it changes its offset but not based on DST. This is more accurate as the previous example was missing information about the fold attribute. Additionally, implementing the fold attribute was rather complex and probably not relevant enough for the section "datetime with tzinfo". | ||||
| * | Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close ↵ | Łukasz Langa | 2019-06-04 | 1 | -8/+2 |
| | | | | | | (GH-13786)" (#13802) This reverts commit 0f0a30f4da4b529e0f7df857b9f575b231b32758. | ||||
| * | Fix grammar (GH-13801) | Raymond Hettinger | 2019-06-04 | 1 | -2/+2 |
| | | |||||
| * | More updates to the annotated assignments docs (GH-13794) | Ivan Levkivskyi | 2019-06-04 | 1 | -4/+3 |
| | | |||||
| * | bpo-35431: Drop the k <= n requirement (GH-13798) | Raymond Hettinger | 2019-06-04 | 1 | -8/+12 |
| | | |||||
| * | bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786) | Victor Stinner | 2019-06-03 | 1 | -2/+8 |
| | | | | | | | | Add BaseEventLoop.wait_executor_on_close attribute: true by default. loop.close() now waits for the default executor to finish by default. Set loop.wait_executor_on_close attribute to False to not wait for the executor. | ||||
| * | bpo-37120: Add SSLContext.num_tickets (GH-13719) | Christian Heimes | 2019-06-03 | 1 | -0/+13 |
| | | | | Signed-off-by: Christian Heimes <christian@python.org> | ||||
| * | bpo-36868: Fix what's new for SSLContext.hostname_checks_common_name (GH-13248) | Christian Heimes | 2019-06-03 | 1 | -3/+2 |
| | | | | | | | What's new now mentions SSLContext.hostname_checks_common_name instead of SSLContext.host_flags. https://bugs.python.org/issue36868 | ||||
| * | bpo-37087: Adding native ID support for OpenBSD (GH-13654) | David Carlier | 2019-06-03 | 2 | -3/+3 |
| | | |||||
| * | Doc fix: duplicate object description of email.message (GH-13742) | Julien Palard | 2019-06-03 | 1 | -0/+1 |
| | | |||||
| * | Add credits to What's New in Python 3.8 (GH-13776) | Victor Stinner | 2019-06-03 | 1 | -1/+18 |
| | | | | | * Credit myself and others. * Complete asyncio changes. | ||||
| * | bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884) | Inada Naoki | 2019-06-03 | 1 | -0/+4 |
| | | | | | | | This patch implements per opcode cache mechanism, and use it in only LOAD_GLOBAL opcode. Based on Yury's opcache3.patch in bpo-26219. | ||||
| * | bpo-36896: Clarify that some types constructors are unstable (GH-13271) | Matthias Bussonnier | 2019-06-03 | 1 | -0/+3 |
| | | |||||
| * | bpo-36974: document PEP 590 (GH-13450) | Jeroen Demeyer | 2019-06-03 | 4 | -123/+293 |
| | | |||||
| * | Update the annotated assignment docs (GH-13757) | Ivan Levkivskyi | 2019-06-03 | 1 | -1/+7 |
| | | |||||
| * | Fix typos in docs and docstrings (GH-13745) | Xtreak | 2019-06-03 | 3 | -3/+3 |
| | | |||||
| * | bpo-19184: Update the documentation of dis module. (GH-13652) | Michele Angrisano | 2019-06-02 | 1 | -3/+7 |
| | | | | | | | | | | | | | | | | * bpo-19184: Update the documentation of dis module * Explain the behavior of the number of arguments of RAISE_VARGARGS opcode. * bpo-19184: Update blurb. * bpo-19184: Fix typo in the dis Documentation. * bpo-19184: Address review comments and improve the doc * bpo-19184: Remove news file. | ||||
| * | bpo-37014: Update docstring and Documentation of fileinput.FileInput(). ↵ | Michele Angrisano | 2019-06-02 | 1 | -2/+3 |
| | | | | | | | | | | | | | (GH-13545) * bpo-37014: Update docstring and Documentation of fileinput.FileInput() * Explain the behavior of fileinput.FileInput() when reading stdin. * Update blurb. * bpo-37014: Fix typo in the docstring and documentation. | ||||
| * | bpo-36027: Extend three-argument pow to negative second argument (GH-13266) | Mark Dickinson | 2019-06-02 | 2 | -3/+24 |
| | | |||||
| * | bpo-37128: Add math.perm(). (GH-13731) | Serhiy Storchaka | 2019-06-02 | 1 | -0/+13 |
| | | |||||
| * | Improve version added references in `typing` module docs (GH-13457) | Anthony Sottile | 2019-06-02 | 1 | -4/+18 |
| | | |||||
| * | Put math.comb() docs is correct place alphabetically (GH-13734) | Raymond Hettinger | 2019-06-01 | 1 | -15/+15 |
| | | |||||
| * | bpo-29414: Change 'the for statement is such an iterator' in Tutorial (GH-273) | Marco Buttu | 2019-06-01 | 1 | -10/+16 |
| | | |||||
| * | bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108) | Serhiy Storchaka | 2019-06-02 | 5 | -9/+43 |
| | | |||||
| * | bpo-36842: Pass positional only parameters to code_new audit hook (GH-13707) | Pablo Galindo | 2019-06-01 | 1 | -1/+1 |
| | | |||||
| * | bpo-28595: Allow shlex whitespace_split with punctuation_chars (GH-2071) | Evan | 2019-06-01 | 1 | -12/+23 |
| | | |||||
| * | bpo-35431: Refactor math.comb() implementation. (GH-13725) | Serhiy Storchaka | 2019-06-01 | 1 | -2/+2 |
| | | | | | | | | * Fixed some bugs. * Added support for index-likes objects. * Improved error messages. * Cleaned up and optimized the code. * Added more tests. | ||||
| * | bpo-37122: Make co->co_argcount represent the total number of positonal ↵ | Pablo Galindo | 2019-06-01 | 3 | -19/+25 |
| | | | | | arguments in the code object (GH-13726) | ||||
| * | bpo-31968: Documentation -- add clarification on the globals dict for exec() ↵ | Anthony Shaw | 2019-06-01 | 1 | -1/+2 |
| | | | | | (GH-13140) | ||||
| * | Doc: Correct the creation year and the credits of the Logo Programming ↵ | Stéphane Wirtel | 2019-06-01 | 1 | -2/+2 |
| | | | | | language (GH-13520) | ||||
| * | Move whats-new entry for math.factorial to the math module section. (GH-13723) | Mark Dickinson | 2019-06-01 | 1 | -3/+3 |
| | | |||||
| * | Use more PEP 570 syntax in the documentation. (GH-13720) | Serhiy Storchaka | 2019-06-01 | 4 | -19/+19 |
| | | |||||
| * | bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) | Serhiy Storchaka | 2019-06-01 | 12 | -19/+18 |
| | | |||||
| * | bpo-35431: Implemented math.comb (GH-11414) | Yash Aggarwal | 2019-06-01 | 1 | -0/+15 |
| | | |||||
