https://github.com/python/cpython/commit/4170bddbcf8d3f6554ddd4a16435a497c10dc252
commit: 4170bddbcf8d3f6554ddd4a16435a497c10dc252
branch: 3.12
author: Kirill Podoprigora <[email protected]>
committer: zware <[email protected]>
date: 2024-09-03T13:21:39-05:00
summary:
[3.12] gh-123646: Remove accidentally left ``lel.patch`` (GH-123647)
files:
D lel.patch
diff --git a/lel.patch b/lel.patch
deleted file mode 100644
index c525a7a00a9d2a..00000000000000
--- a/lel.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
-index 3118fb19846..9e0dee8cc38 100644
---- a/Parser/tokenizer.c
-+++ b/Parser/tokenizer.c
-@@ -65,7 +65,7 @@ static const char *type_comment_prefix = "# type: ";
-
- static struct tok_state *tok_new(void) {
- struct tok_state *tok =
-- (struct tok_state *)PyMem_Malloc(sizeof(struct tok_state));
-+ (struct tok_state *)PyMem_Calloc(1, sizeof(struct tok_state));
- if (tok == NULL)
- return NULL;
- tok->buf = tok->cur = tok->inp = NULL;
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]