8000 gh-102856: Python tokenizer implementation for PEP 701 by mgmacias95 · Pull Request #104323 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-102856: Python tokenizer implementation for PEP 701 #104323

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 20 commits into from
May 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove intermediate token created for dev purposes
  • Loading branch information
mgmacias95 authored and pablogsal committed May 18, 2023
commit a5f4b408aed4a4006b8eb77a6d741029db630783
1 change: 0 additions & 1 deletion Grammar/Tokens
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ SOFT_KEYWORD
FSTRING_START
FSTRING_MIDDLE
FSTRING_END
FSTRING_EXPR
ERRORTOKEN

# These aren't used by the C tokenizer but are needed for tokenize.py
Expand Down
1 change: 0 additions & 1 deletion Include/internal/pycore_token.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ extern "C" {
#define FSTRING_MIDDLE 62
#define FSTRING_END 63
#define ERRORTOKEN 64
#define FSTRING_EXPR 69
#define N_TOKENS 68
#define NT_OFFSET 256

Expand Down
0