-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* git * Add limited Python 3.12 support * add 3.12.2 * run ci on 3.12.2 * typo * restore original testcapi * skip tkinter for 3.12 * roll forward patches * build libffi in ci test * fix ci * Revert "restore original testcapi" This reverts commit 6ac3063. * update testcapi sources * try installing libffi to system * set cflags * go back to deps directory * increase sdk level * update deepfreeze.py reference * build _tokenize module * fix syntax * use full path to tokenize * add _typing * add Rpcrt4 for win _socket * update c standard selection * add to _tokenize sources * more _tokenize sources * don't compile some builtins separately * try treating _tokenize as builtin * Revert "try treating _tokenize as builtin" This reverts commit 7a7c738. * Revert "don't compile some builtins separately" This reverts commit 8ac6161. * Revert "Revert "don't compile some builtins separately"" This reverts commit cae6053. * build shared libpython * Revert "build shared libpython" This reverts commit 3bcb4a9. * Revert "Revert "Revert "don't compile some builtins separately""" This reverts commit 9f3b647. * some platform-specific tweaks * always build _tokenize _typing as builtin * add 3.12.0 3.12.1 --------- Co-authored-by: Minmin Gong <[email protected]>
- Loading branch information
1 parent
0996ade
commit 8f39f0a
Showing
12 changed files
with
404 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
diff --git a/PC/config_minimal.c b/PC/config_minimal.c | ||
index 928a4efd32..e541204c79 100644 | ||
--- a/PC/config_minimal.c | ||
+++ b/PC/config_minimal.c | ||
@@ -8,6 +8,12 @@ | ||
/* Define extern variables omitted from minimal builds */ | ||
void *PyWin_DLLhModule = NULL; | ||
|
||
+#if !defined(MS_DLL_ID) | ||
+# error MS_DLL_ID must be defined | ||
+#endif | ||
+ | ||
+const char *PyWin_DLLVersionString = MS_DLL_ID; | ||
+ | ||
|
||
extern PyObject* PyInit_faulthandler(void); | ||
extern PyObject* PyInit__tracemalloc(void); |
Oops, something went wrong.