Compare commits
3 Commits
04232de229
...
d9d63f13cf
Author | SHA1 | Date |
---|---|---|
Miss Islington (bot) | d9d63f13cf | |
Miss Islington (bot) | 74c40ddfd3 | |
Miss Islington (bot) | eb6059e881 |
|
@ -125,7 +125,7 @@ jobs:
|
||||||
run: sudo ./.github/workflows/posix-deps-apt.sh
|
run: sudo ./.github/workflows/posix-deps-apt.sh
|
||||||
- name: 'Restore OpenSSL build'
|
- name: 'Restore OpenSSL build'
|
||||||
id: cache-openssl
|
id: cache-openssl
|
||||||
uses: actions/cache@v2.1.2
|
uses: actions/cache@v2.1.3
|
||||||
with:
|
with:
|
||||||
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
|
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
|
||||||
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
|
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
|
||||||
|
|
|
@ -30,7 +30,7 @@ jobs:
|
||||||
run: sudo ./.github/workflows/posix-deps-apt.sh
|
run: sudo ./.github/workflows/posix-deps-apt.sh
|
||||||
- name: 'Restore OpenSSL build'
|
- name: 'Restore OpenSSL build'
|
||||||
id: cache-openssl
|
id: cache-openssl
|
||||||
uses: actions/cache@v2.1.2
|
uses: actions/cache@v2.1.3
|
||||||
with:
|
with:
|
||||||
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
|
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
|
||||||
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
|
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
|
||||||
|
|
|
@ -34,7 +34,7 @@ jobs:
|
||||||
- name: 'Build documentation'
|
- name: 'Build documentation'
|
||||||
run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W -j4" doctest suspicious html
|
run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W -j4" doctest suspicious html
|
||||||
- name: 'Upload'
|
- name: 'Upload'
|
||||||
uses: actions/upload-artifact@v2.2.0
|
uses: actions/upload-artifact@v2.2.1
|
||||||
with:
|
with:
|
||||||
name: doc-html
|
name: doc-html
|
||||||
path: Doc/build/html
|
path: Doc/build/html
|
||||||
|
|
|
@ -2115,9 +2115,6 @@ Changes in the C API
|
||||||
|
|
||||||
(Contributed by Antoine Pitrou in :issue:`32388`.)
|
(Contributed by Antoine Pitrou in :issue:`32388`.)
|
||||||
|
|
||||||
* The :c:func:`PyCode_New` has a new parameter in the second position (*posonlyargcount*)
|
|
||||||
to support :pep:`570`, indicating the number of positional-only arguments.
|
|
||||||
|
|
||||||
* The functions :c:func:`PyNode_AddChild` and :c:func:`PyParser_AddToken` now accept
|
* The functions :c:func:`PyNode_AddChild` and :c:func:`PyParser_AddToken` now accept
|
||||||
two additional ``int`` arguments *end_lineno* and *end_col_offset*.
|
two additional ``int`` arguments *end_lineno* and *end_col_offset*.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue