forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythongh-113317: Argument Clinic: move C/Py identifier helpers into l…
…ibclinic (python#115520)
- Loading branch information
1 parent
20eaf4d
commit 351c103
Showing
3 changed files
with
45 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import re | ||
from .errors import ClinicError | ||
|
||
|
||
is_legal_c_identifier = re.compile("^[A-Za-z_][A-Za-z0-9_]*$").match | ||
|
||
|
||
def is_legal_py_identifier(identifier: str) -> bool: | ||
return all(is_legal_c_identifier(field) for field in identifier.split(".")) | ||
|
||
|
||
# Identifiers that are okay in Python but aren't a good idea in C. | ||
# So if they're used Argument Clinic will add "_value" to the end | ||
# of the name in C. | ||
_c_keywords = frozenset(""" | ||
asm auto break case char const continue default do double | ||
else enum extern float for goto if inline int long | ||
register return short signed sizeof static struct switch | ||
typedef typeof union unsigned void volatile while | ||
""".strip().split() | ||
) | ||
|
||
|
||
def ensure_legal_c_identifier(identifier: str) -> str: | ||
# For now, just complain if what we're given isn't legal. | ||
if not is_legal_c_identifier(identifier): | ||
raise ClinicError(f"Illegal C identifier: {identifier}") | ||
# But if we picked a C keyword, pick something else. | ||
if identifier in _c_keywords: | ||
return identifier + "_value" | ||
return identifier |