8000 bpo-45847: Port _tkinter to PY_STDLIB_MOD by erlend-aasland · Pull Request #31698 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-45847: Port _tkinter to PY_STDLIB_MOD #31698

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
Mar 31, 2022
Merged
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
make patchcheck
  • Loading branch information
Erlend E. Aasland committed Mar 17, 2022
commit b8ee79886bcc507715e88f213941fd528aada83b
8F42
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ def detect_readline_curses(self):
self.missing.append('_curses_panel')

def detect_crypt(self):
self.addext(Extension('_crypt', ['_cryptmodule.c']))
self.addext(Extension('_crypt', ['_cryptmodule.c']))

def detect_dbm_gdbm(self):
# Modules that provide persistent dictionary-like semantics. You will
Expand Down
0