File tree
8 files changed
+28
-16
lines changed- changelogs/nightly
- patches
8 files changed
+28
-16
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
1 | 7 |
| |
2 | 8 |
| |
3 | 9 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
1 | 7 |
| |
2 | 8 |
| |
3 | 9 |
| |
|
- Doc/c-api/arg.rst+23-11
- Doc/c-api/sys.rst+32
- Doc/c-api/unicode.rst+27-8
- Doc/library/calendar.rst+22-2
- Doc/library/ctypes.rst+2
- Doc/whatsnew/3.14.rst+6
- Include/cpython/fileutils.h+8-2
- Include/internal/pycore_instruments.h+2-2
- Include/internal/pycore_magic_number.h+3-2
- Include/internal/pycore_opcode_metadata.h+31-8
- Include/internal/pycore_uop_ids.h+1
- Include/internal/pycore_uop_metadata.h+4
- Include/opcode_ids.h+92-90
- Lib/_opcode_metadata.py+92-90
- Lib/asyncio/base_events.py+4-1
- Lib/asyncio/events.py+28
- Lib/asyncio/timeouts.py+11-13
- Lib/sysconfig/__init__.py+4-4
- Lib/test/test_asyncio/test_events.py+118
- Lib/test/test_capi/test_file.py+67
- Lib/test/test_code.py+40
- Lib/test/test_compiler_codegen.py+1-3
- Lib/test/test_dis.py+210-216
- Lib/test/test_generated_cases.py+25
- Lib/test/test_io.py+1
- Lib/test/test_monitoring.py+87-5
- Lib/test/test_os.py+1
- Lib/test/test_shutil.py+1
- Lib/test/test_ssl.py+1-2
- Lib/test/test_tarfile.py+1
- Lib/test/test_zipfile/test_core.py+3-1
- Lib/test/test_zipimport.py+1
- Misc/NEWS.d/next/Build/2025-01-04-22-39-10.gh-issue-128472.Wt5E6M.rst+2
- Misc/NEWS.d/next/C_API/2024-12-11-13-01-26.gh-issue-127350.uEBZZ4.rst+5
- Misc/NEWS.d/next/Library/2025-01-05-11-46-14.gh-issue-128340.gKI0uU.rst+1
- Misc/NEWS.d/next/Library/2025-01-06-21-35-00.gh-issue-128559.6fxcDM.rst+1
- Misc/NEWS.d/next/macOS/2024-12-22-08-54-30.gh-issue-127592.iyuFCC.rst+2
- Modules/_decimal/_decimal.c+27-24
- Modules/_ssl.c+1-1
- Modules/_ssl/debughelpers.c+2-2
- Modules/_testcapi/clinic/file.c.h+48
- Modules/_testcapi/file.c+35
- Modules/_testcapi/object.c+4-4
- Modules/_testcapimodule.c+27-6
- Modules/main.c+2-2
- Objects/descrobject.c+10-7
- Programs/test_frozenmain.h+33-33
- Python/bytecodes.c+33-24
- Python/ceval_macros.h+1-1
- Python/codegen.c+3-9
- Python/errors.c+1-1
- Python/executor_cases.c.h+14
- Python/fileutils.c+49-30
- Python/flowgraph.c+3-6
- Python/generated_cases.c.h+47-24
- Python/import.c+1-1
- Python/instrumentation.c+97-54
- Python/opcode_targets.h+2-2
- Python/optimizer.c+9-3
- Python/optimizer_cases.c.h+6
- Python/pylifecycle.c+22-11
- Python/pythonrun.c+1-1
- Python/sysmodule.c+1-1
- Tools/cases_generator/analyzer.py+5-1
- Tools/cases_generator/generators_common.py+2
- Tools/cases_generator/lexer.py+1
- Tools/cases_generator/opcode_metadata_generator.py+3-2
- Tools/cases_generator/tier1_generator.py+5-2
- configure+2-2
- configure.ac+9-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
12 |
| - | |
| 12 | + | |
13 | 13 |
| |
14 | 14 |
| |
15 |
| - | |
| 15 | + | |
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
| |||
36 | 36 |
| |
37 | 37 |
| |
38 | 38 |
| |
39 |
| - | |
| 39 | + | |
40 | 40 |
| |
41 | 41 |
| |
42 | 42 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
75 | 75 |
| |
76 | 76 |
| |
77 | 77 |
| |
78 |
| - | |
| 78 | + | |
79 | 79 |
| |
80 | 80 |
| |
81 | 81 |
| |
| |||
229 | 229 |
| |
230 | 230 |
| |
231 | 231 |
| |
232 |
| - | |
| 232 | + | |
233 | 233 |
| |
234 | 234 |
| |
235 | 235 |
| |
| |||
268 | 268 |
| |
269 | 269 |
| |
270 | 270 |
| |
271 |
| - | |
| 271 | + | |
272 | 272 |
| |
273 | 273 |
| |
274 |
| - | |
| 274 | + | |
275 | 275 |
| |
276 | 276 |
| |
277 | 277 |
| |
| |||
285 | 285 |
| |
286 | 286 |
| |
287 | 287 |
| |
288 |
| - | |
| 288 | + | |
289 | 289 |
| |
290 | 290 |
| |
291 | 291 |
| |
| |||
294 | 294 |
| |
295 | 295 |
| |
296 | 296 |
| |
297 |
| - | |
| 297 | + | |
298 | 298 |
| |
299 | 299 |
| |
300 | 300 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
12 |
| - | |
| 12 | + | |
13 | 13 |
| |
14 | 14 |
| |
15 |
| - | |
| 15 | + | |
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
| |||
23 | 23 |
| |
24 | 24 |
| |
25 | 25 |
| |
26 |
| - | |
| 26 | + | |
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
18 |
| - | |
| 18 | + | |
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
| |||
45 | 45 |
| |
46 | 46 |
| |
47 | 47 |
| |
48 |
| - | |
| 48 | + | |
49 | 49 |
| |
50 | 50 |
| |
51 | 51 |
| |
|
0 commit comments