[3.11] gh-108303: Move ann_module*.py files to typinganndata/ folder (#108354) (#109673)

gh-108303: Move `ann_module*.py` files to `typinganndata/` folder (#108354)

(cherry picked from commit 3f61cf646d)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
This commit is contained in:
Victor Stinner 2023-09-21 20:18:39 +02:00 committed by GitHub
parent 3ba4dfe9cd
commit e59ee6c59e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 13 additions and 9 deletions

View file

@ -4641,7 +4641,7 @@ class AssertTypeTests(BaseTestCase):
# We need this to make sure that `@no_type_check` respects `__module__` attr:
from test import ann_module8
from test.typinganndata import ann_module8
@no_type_check
class NoTypeCheck_Outer:
@ -5228,7 +5228,9 @@ class OverloadTests(BaseTestCase):
# Definitions needed for features introduced in Python 3.6
from test import ann_module, ann_module2, ann_module3, ann_module5, ann_module6
from test.typinganndata import (
ann_module, ann_module2, ann_module3, ann_module5, ann_module6,
)
T_a = TypeVar('T_a')