Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-47239: Fixes py.exe output when run in a virtual environment. (GH-32364) | Steve Dower | 2022-04-06 | 3 | -104/+281 |
| | |||||
* | bpo-35134: Add Include/cpython/complexobject.h header (GH-32383) | Victor Stinner | 2022-04-06 | 5 | -42/+52 |
| | | | | Move the private _PyComplex_FormatAdvancedWriter() function to the internal C API. This function is no longer exported. | ||||
* | bpo-46576: Speed up test_peg_generator by using a static library for shared ↵ | Jeremy Kloth | 2022-04-06 | 3 | -44/+123 |
| | | | | | sources (GH-32338) Speed up test_peg_generator by using a static library for shared sources to avoid recompiling as much code. | ||||
* | Change parameter name from *x* for reals to *n* for integers. (GH-32377) | Raymond Hettinger | 2022-04-06 | 3 | -8/+8 |
| | |||||
* | bpo-47061: use `warnings._deprecated()` with asynchat, asyncore, and smtpd ↵ | Brett Cannon | 2022-04-06 | 3 | -18/+14 |
| | | | | (GH-32350) | ||||
* | Minor code nit: Move an unrelated statement out of a try clause in ↵ | Géry Ogam | 2022-04-06 | 1 | -2/+2 |
| | | | | Sequence.index (GH-32330) | ||||
* | bpo-26579: Add object.__getstate__(). (GH-2821) | Serhiy Storchaka | 2022-04-06 | 25 | -255/+389 |
| | | | | | | | Copying and pickling instances of subclasses of builtin types bytearray, set, frozenset, collections.OrderedDict, collections.deque, weakref.WeakSet, and datetime.tzinfo now copies and pickles instance attributes implemented as slots. | ||||
* | Remove python2 support in logging cookbook example. (GH-32362) | Mathieu Dupuy | 2022-04-06 | 1 | -8/+1 |
| | |||||
* | bpo-46721: Optimize set.issuperset() for non-set arguments (GH-31280) | Serhiy Storchaka | 2022-04-06 | 2 | -16/+24 |
| | |||||
* | bpo-43464: Optimize set.intersection() for non-set arguments (GH-31316) | Serhiy Storchaka | 2022-04-06 | 2 | -0/+5 |
| | |||||
* | bpo-47227: Suppress expression chaining for more RE parsing errors (GH-32333) | Serhiy Storchaka | 2022-04-06 | 2 | -5/+6 |
| | |||||
* | bpo-47211: Remove function re.template() and flag re.TEMPLATE (GH-32300) | Serhiy Storchaka | 2022-04-06 | 8 | -18/+7 |
| | | | They were undocumented and never working. | ||||
* | Fix whitespace/indentation issues in test_sys (GH-32369) | Ken Jin | 2022-04-06 | 1 | -2/+2 |
| | |||||
* | stdtypes docs: fix typo (GH-32349) | Ian | 2022-04-06 | 1 | -1/+1 |
| | |||||
* | bpo-47235: Note where a typo is intentional in code. (GH-32348) | Gregory P. Smith | 2022-04-06 | 1 | -4/+4 |
| | | | | | | | | | | | People keep popping up reporting these as typos in the docs despite being described as typos in the surrounding text. Hopefully a comment on the line itself makes it more obvious? Arguably some of the typo examples are not using the "right" typo as the "assret" one in particular is now detected by default due to how common it was in actual code. But I don't want to to typo chasing by changing these examples to be other not yet auto-detected typos as they still illustrate the point well enough. | ||||
* | bpo-47115: Document which parts of structs are in limited API/stable ABI ↵ | Petr Viktorin | 2022-04-06 | 7 | -893/+969 |
| | | | | | | (GH-32196) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no> | ||||
* | bpo-40421: test_capi uses assertEqual(), not assertEquals() (GH-32361) | Victor Stinner | 2022-04-06 | 1 | -1/+1 |
| | | | | | | | unittest.TestCase.assertEquals() alias is depracated. Fix the warning: Lib/test/test_capi.py:1100: DeprecationWarning: Please use assertEqual instead. self.assertEquals(frame.f_locals, _testcapi.frame_getlocals(frame)) | ||||
* | bpo-40280: WASM defaults to no dynamic linking (GH-32360) | Christian Heimes | 2022-04-06 | 2 | -2/+14 |
| | |||||
* | Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API ↵ | Victor Stinner | 2022-04-06 | 7 | -42/+15 |
| | | | | | | | | | | | (GH-32052)" (GH-32343) * Revert "bpo-46850: Move _PyInterpreterState_SetEvalFrameFunc() to internal C API (GH-32054)" This reverts commit f877b40e3f7e0d97878884d80fbec879a85ab7e8. * Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)" This reverts commit b9a5522dd952125a99ff554f01f311cae25f5a91. | ||||
* | [doc] Add missing backtick. (GH-32355) | Julien Palard | 2022-04-06 | 1 | -1/+1 |
| | |||||
* | bpo-47189: What's New in 3.11: Faster CPython (GH-32235) | Ken Jin | 2022-04-06 | 3 | -7/+223 |
| | | | | | | | Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: Guido van Rossum <gvanrossum@users.noreply.github.com> Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | ||||
* | bpo-47103: Copy pgort140.dll into output directory when building ↵ | Steve Dower | 2022-04-06 | 3 | -18/+18 |
| | | | | PGInstrument on Windows (GH-32083) | ||||
* | Fix generation of MD5 table at end of Windows release build (GH-32345) | Steve Dower | 2022-04-06 | 1 | -4/+12 |
| | |||||
* | Post 3.11.0a7 | Pablo Galindo | 2022-04-05 | 1 | -1/+1 |
| | |||||
* | Python 3.11.0a7v3.11.0a7 | Pablo Galindo | 2022-04-05 | 159 | -476/+1752 |
| | |||||
* | bpo-47061: deprecate the `aifc` module (GH-32134) | Brett Cannon | 2022-04-05 | 10 | -6/+95 |
| | | | Co-authored-by: Christian Heimes <christian@python.org> | ||||
* | bpo-47230: Silence compiler warnings on Windows from zlib 1.2.12 (GH-32337) | Jeremy Kloth | 2022-04-05 | 1 | -2/+4 |
| | |||||
* | bpo-4833: Add ZipFile.mkdir (GH-32160) | Sam Ezeh | 2022-04-05 | 4 | -17/+101 |
| | |||||
* | bpo-47009: Fix assert on big endian (GH-32332) | Christian Heimes | 2022-04-05 | 1 | -1/+1 |
| | |||||
* | bpo-46607: Add DeprecationWarning for LegacyInterpolation, deprecated in ↵ | Hugo van Kemenade | 2022-04-05 | 4 | -0/+26 |
| | | | | docs since 3.2 (GH-30927) | ||||
* | bpo-47088: Add typing.LiteralString (PEP 675) (GH-32064) | Jelle Zijlstra | 2022-04-05 | 4 | -2/+116 |
| | | | Co-authored-by: Nick Pope <nick@nickpope.me.uk> | ||||
* | bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728) | Erlend Egeberg Aasland | 2022-04-05 | 10 | -1/+435 |
| | | | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | ||||
* | bpo-47212: Improve error messages for un-parenthesized generator expressions ↵ | Matthieu Dartiailh | 2022-04-05 | 7 | -8/+28 |
| | | | | (GH-32302) | ||||
* | bpo-45774: Harden SQLite detection (GH-30016) | Erlend Egeberg Aasland | 2022-04-05 | 4 | -64/+638 |
| | |||||
* | bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221) | Irit Katriel | 2022-04-05 | 11 | -46/+56 |
| | |||||
* | bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309) | Irit Katriel | 2022-04-05 | 10 | -97/+99 |
| | |||||
* | bpo-47009: Let PRECALL_NO_KW_LIST_APPEND do its own POP_TOP (GH-32239) | Dennis Sweeney | 2022-04-05 | 2 | -5/+8 |
| | |||||
* | bpo-40280: Add limited Emscripten REPL (GH-32284) | Christian Heimes | 2022-04-05 | 8 | -19/+428 |
| | | | Co-authored-by: Katie Bell <katie@katharos.id.au> | ||||
* | chore/docs: fix rst style and typo (GH-32331) | 谭九鼎 | 2022-04-05 | 1 | -6/+6 |
| | | | | | | | | | | | | | Current: ![图片](https://user-images.githubusercontent.com/24759802/161704413-30fc91e8-ccd1-4617-8483-bc54ec970f30.png) After this change: ![图片](https://user-images.githubusercontent.com/24759802/161704636-a5458192-a93a-40af-8bde-90ba80fdb53f.png) Trivial so I don't think it needs news or issue Automerge-Triggered-By: GH:JulienPalard | ||||
* | bpo-42238: [doc]: A make sucpicious false positive. (GH-32329) | Julien Palard | 2022-04-05 | 1 | -0/+1 |
| | |||||
* | bpo-46890: Fix setting of sys._base_executable with framework builds on ↵ | Ronald Oussoren | 2022-04-05 | 5 | -2/+200 |
| | | | | | | | | | macOS (GH-31958) The side effect of this bug was that venv environments directly used the main interpreter instead of the intermediate stub executable, which can cause problems when a script uses system APIs that require the use of an application bundle. | ||||
* | bpo-45847: Adapt macOS installer build to use new tkinter configure vars ↵ | Ned Deily | 2022-04-05 | 1 | -3/+3 |
| | | | | (GH-32328) | ||||
* | bpo-40982: shutil docs: Remove outdated copytree() example (GH-24778) | Zackery Spytz | 2022-04-05 | 1 | -36/+1 |
| | | | | It is not preferable to keep a copy of the implementation in the docs. | ||||
* | bpo-43224: typing: Add tests for pickling and copying of unpacked native ↵ | Matthew Rahtz | 2022-04-05 | 1 | -17/+56 |
| | | | | tuple (GH-32159) | ||||
* | crypt docs: Fix references to `methods` attr (GH-26806) | andrei kulakov | 2022-04-05 | 1 | -4/+3 |
| | | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||||
* | bpo-32658: Regex docs: Fix metacharacter reference (GH-32230) | Mike cm | 2022-04-05 | 1 | -1/+1 |
| | | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||||
* | bpo-45790: List macros in same order in which fields are described (GH-29529) | rtobar | 2022-04-05 | 2 | -2/+4 |
| | | | | | Signed-off-by: Rodrigo Tobar <rtobar@icrar.org> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||||
* | bpo-46998: Allow subclassing Any at runtime (GH-31841) | Shantanu | 2022-04-05 | 6 | -31/+44 |
| | | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||||
* | bpo-47007: [doc] `str` special method lookup (GH-31863) | Vanshaj Singhania | 2022-04-05 | 1 | -1/+2 |
| | | | | | | Clarify the `str()` docs to point out that `object.__str__()` follows special method lookup. Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||||
* | bpo-41233: Add links to errnos referenced in exceptions docs (GH-21380) | yyyyyyyan | 2022-04-05 | 4 | -37/+54 |
| | | | | Co-authored-by: Andrew Kuchling <amk@amk.ca> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> |