8000 gh-91291: Accept attributes as keyword arguments in decimal.localcontext by dignissimus · Pull Request #32242 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-91291: Accept attributes as keyword arguments 8000 in decimal.localcontext #32242

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
Apr 22, 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
Revert changes to Makefile
  • Loading branch information
dignissimus committed Apr 4, 2022
commit 0775ccffbc16f90cac02c954715c1e3f2fb9d836
4 changes: 2 additions & 2 deletions Doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ venv:
echo "To recreate it, remove it first with \`make clean-venv'."; \
else \
$(PYTHON) -m venv $(VENVDIR); \
$(VENVDIR)/bin/python3 -m pip --cert ~/.ssh/ags.pem install -U pip setuptools; \
$(VENVDIR)/bin/python3 -m pip --cert ~/.ssh/ags.pem install -r requirements.txt; \
$(VENVDIR)/bin/python3 -m pip install -U pip setuptools; \
$(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \
echo "The venv has been created in the $(VENVDIR) directory"; \
fi

Expand Down
0