Skip to content

Commit c641fbe

Browse files
committed
Merge branch 'main' into lower-c-recursion-limit-for-windows
2 parents f4a46b7 + 30e6cbd commit c641fbe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+436
-423
lines changed

.cirrus-DISABLED.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
- name: Configure ccache action
144144
uses: hendrikmuhs/[email protected]
145145
with:
146-
save: ${{ github.event_name == 'push' }}
146+
save: false
147147
- name: Check Autoconf and aclocal versions
148148
run: |
149149
grep "Generated by GNU Autoconf 2.71" configure
@@ -287,7 +287,7 @@ jobs:
287287
- name: Configure ccache action
288288
uses: hendrikmuhs/[email protected]
289289
with:
290-
save: ${{ github.event_name == 'push' }}
290+
save: false
291291
- name: Configure CPython
292292
run: ./configure --config-cache --with-pydebug --with-openssl=$OPENSSL_DIR
293293
- name: Build CPython
@@ -332,7 +332,7 @@ jobs:
332332
- name: Configure ccache action
333333
uses: hendrikmuhs/[email protected]
334334
with:
335-
save: ${{ github.event_name == 'push' }}
335+
save: false
336336
- name: Setup directory envs for out-of-tree builds
337337
run: |
338338
echo "CPYTHON_RO_SRCDIR=$(realpath -m ${GITHUB_WORKSPACE}/../cpython-ro-srcdir)" >> $GITHUB_ENV

.github/workflows/reusable-ubuntu.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
uses: hendrikmuhs/[email protected]
4444
with:
4545
save: ${{ github.event_name == 'push' }}
46+
max-size: "200M"
4647
- name: Setup directory envs for out-of-tree builds
4748
run: |
4849
echo "CPYTHON_RO_SRCDIR=$(realpath -m ${GITHUB_WORKSPACE}/../cpython-ro-srcdir)" >> $GITHUB_ENV

Doc/library/kde_example.png

-16.7 KB
Loading

Doc/library/mmap.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ To map anonymous memory, -1 should be passed as the fileno along with the length
6262
the same file. If you specify the name of an existing tag, that tag is
6363
opened, otherwise a new tag of this name is created. If this parameter is
6464
omitted or ``None``, the mapping is created without a name. Avoiding the
65-
use of the tag parameter will assist in keeping your code portable between
66-
Unix and Windows.
65+
use of the *tagname* parameter will assist in keeping your code portable
66+
between Unix and Windows.
6767

6868
*offset* may be specified as a non-negative integer offset. mmap references
6969
will be relative to the offset from the beginning of the file. *offset*

0 commit comments

Comments
 (0)