Skip to content

Commit 09e0caf

Browse files
committed
Merge branch 'master' into deprecate-cval/128813
2 parents cc4bad7 + d5191ba commit 09e0caf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Doc/library/typing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3357,7 +3357,7 @@ Introspection helpers
33573357
with ``T``, unless *include_extras* is set to ``True`` (see
33583358
:class:`Annotated` for more information).
33593359

3360-
See also :func:`inspect.get_annotations`, a lower-level function that
3360+
See also :func:`annotationlib.get_annotations`, a lower-level function that
33613361
returns annotations more directly.
33623362

33633363
.. note::

Makefile.pre.in

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1121,6 +1121,10 @@ web_example/index.html: $(WEBEX_DIR)/index.html
11211121
@mkdir -p web_example
11221122
@cp $< $@
11231123

1124+
web_example/python.worker.mjs: $(WEBEX_DIR)/python.worker.mjs
1125+
@mkdir -p web_example
1126+
@cp $< $@
1127+
11241128
web_example/server.py: $(WEBEX_DIR)/server.py
11251129
@mkdir -p web_example
11261130
@cp $< $@
@@ -1138,7 +1142,7 @@ web_example/python.mjs web_example/python.wasm: $(BUILDPYTHON)
11381142
cp python.wasm web_example/python.wasm
11391143

11401144
.PHONY: web_example
1141-
web_example: web_example/python.mjs web_example/index.html web_example/server.py web_example/$(ZIP_STDLIB)
1145+
web_example: web_example/python.mjs web_example/python.worker.mjs web_example/index.html web_example/server.py web_example/$(ZIP_STDLIB)
11421146

11431147
WEBEX2=web_example_pyrepl_jspi
11441148
WEBEX2_DIR=$(EMSCRIPTEN_DIR)/$(WEBEX2)/

0 commit comments

Comments
 (0)