8000 gh-102856: Initial implementation of PEP 701 by pablogsal · Pull Request #102855 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-102856: Initial implementation of PEP 701 #102855

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Apr 19, 2023
Prev Previous commit
Next Next commit
Update Parser/tokenizer.h
  • Loading branch information
pablogsal authored Apr 18, 2023
commit b0940faa4c5ba208a8bc336d294ddcf6aadb28ab
2 changes: 1 addition & 1 deletion Parser/tokenizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ enum tokenizer_mode_kind_t {
TOK_FSTRING_MODE,
};

#define MAX_EXPR_NEXTING 3
#define MAX_EXPR_NESTING 3

typedef struct _tokenizer_mode {
enum tokenizer_mode_kind_t kind;
Expand Down
0