Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into differ
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-one committed May 24, 2024
2 parents 5eeeef5 + b48a3db commit 8e93248
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,22 @@ concurrency:
cancel-in-progress: true

jobs:
interpreter:
name: Interpreter (Debug)
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
- uses: actions/checkout@v4
- name: Build tier two interpreter
run: |
./configure --enable-experimental-jit=interpreter --with-pydebug
make all --jobs 4
- name: Test tier two interpreter
run: |
./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
jit:
name: ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }})
needs: interpreter
runs-on: ${{ matrix.runner }}
timeout-minutes: 90
strategy:
Expand Down Expand Up @@ -153,6 +167,7 @@ jobs:
jit-with-disabled-gil:
name: Free-Threaded (Debug)
needs: interpreter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions Doc/tools/extensions/glossary_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def process_glossary_nodes(app, doctree, fromdocname):

terms = {}

for node in doctree.traverse(glossary):
for glossary_item in node.traverse(definition_list_item):
for node in doctree.findall(glossary):
for glossary_item in node.findall(definition_list_item):
term = glossary_item[0].astext().lower()
definition = glossary_item[1]

Expand Down
4 changes: 2 additions & 2 deletions Doc/tools/extensions/pyspecific.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ def parse_monitoring_event(env, sig, signode):


def process_audit_events(app, doctree, fromdocname):
for node in doctree.traverse(audit_event_list):
for node in doctree.findall(audit_event_list):
break
else:
return
Expand Down Expand Up @@ -663,7 +663,7 @@ def process_audit_events(app, doctree, fromdocname):

body += row

for node in doctree.traverse(audit_event_list):
for node in doctree.findall(audit_event_list):
node.replace_self(table)


Expand Down

0 comments on commit 8e93248

Please sign in to comment.