diff options
author | AMIR <31338382+amiremohamadi@users.noreply.github.com> | 2019-10-23 00:05:54 (GMT) |
---|---|---|
committer | Carol Willing <carolcode@willingconsulting.com> | 2019-10-23 00:05:54 (GMT) |
commit | 20bf8e08a18c0f1eab49c54f3bd56f8364a2f5cc (patch) | |
tree | 818cf59f8167afd832e7967a946c25cf206099a4 /Tools/c-analyzer | |
parent | 91528f40c30717563a478920861c81d18da5bf63 (diff) | |
download | cpython-20bf8e08a18c0f1eab49c54f3bd56f8364a2f5cc.zip cpython-20bf8e08a18c0f1eab49c54f3bd56f8364a2f5cc.tar.gz cpython-20bf8e08a18c0f1eab49c54f3bd56f8364a2f5cc.tar.bz2 |
bpo-38419: fix "check-c-globals" path (GH-16680)
Diffstat (limited to 'Tools/c-analyzer')
-rw-r--r-- | Tools/c-analyzer/README | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/c-analyzer/README b/Tools/c-analyzer/README index 0ee8ac3..8cf20e2 100644 --- a/Tools/c-analyzer/README +++ b/Tools/c-analyzer/README @@ -34,7 +34,7 @@ should be added for runtime state. Instead, they should be added to _PyRuntimeState or one of its sub-structs. The check-c-globals script should be run to ensure that no new globals have been added: - python3 Tools/c-globals/check-c-globals.py + python3 Tools/c-analyzer/check-c-globals.py If it reports any globals then they should be resolved. If the globals are runtime state then they should be folded into _PyRuntimeState. |