Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

bpo-1635741: Release Unicode interned strings at exit#21269

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
vstinner merged 1 commit intopython:masterfromvstinner:clear_interned
Jul 1, 2020
Merged

bpo-1635741: Release Unicode interned strings at exit#21269

vstinner merged 1 commit intopython:masterfromvstinner:clear_interned
Jul 1, 2020

Conversation

vstinner
Copy link
Member

@vstinnervstinner commentedJul 1, 2020
edited by bedevere-bot
Loading

  • PyUnicode_InternInPlace() now ensures that interned strings are
    ready.
  • Add _PyUnicode_ClearInterned().
  • Py_Finalize() now releases Unicode interned strings:
    call _PyUnicode_ClearInterned().

https://bugs.python.org/issue1635741

* PyUnicode_InternInPlace() now ensures that interned strings are  ready.* Add _PyUnicode_ClearInterned().* Py_Finalize() now releases Unicode interned strings:  call _PyUnicode_ClearInterned().
@vstinner
Copy link
MemberAuthor

Python has between 1446 (./python -sSI -c pass command) and 4660 (run 19 tests using./python -m test and interrupt it after around 19 tests) interned strings at exit.

This PR has no significant impact on timing of the./python -sSI -c pass command:

# benchmark$ python3 -m pyperf command -o ref.json -- ./python -sSI -c pass# switch to the PR branch, make$ python3 -m pyperf command -o clear.json -- ./python -sSI -c pass$ python3 -m pyperf show ref.json Mean +- std dev: 7.56 ms +- 0.24 ms$ python3 -m pyperf compare_to ref.json clear.jsonBenchmark hidden because not significant (1): command

@shihai1991 proposed PR#21087 to solve the same problem. My PR clears interned strings before calling _PyDict_Fini() and _PyList_Fini(), since _PyUnicode_ClearInterned() uses a dict and a list.

@vstinnervstinner merged commit666ecfb intopython:masterJul 1, 2020
@vstinnervstinner deleted the clear_interned branchJuly 1, 2020 23:20
arun-mani-j pushed a commit to arun-mani-j/cpython that referenced this pull requestJul 21, 2020
* PyUnicode_InternInPlace() now ensures that interned strings are  ready.* Add _PyUnicode_ClearInterned().* Py_Finalize() now releases Unicode interned strings:  call _PyUnicode_ClearInterned().
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

3 participants
@vstinner@the-knights-who-say-ni@bedevere-bot

[8]ページ先頭

©2009-2025 Movatter.jp