Skip to content

Update importlib from CPython 3.11.2 #4561

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Lib/__hello__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
initialized = True

class TestFrozenUtf8_1:
"""\u00b6"""

class TestFrozenUtf8_2:
"""\u03c0"""

class TestFrozenUtf8_4:
"""\U0001f600"""

def main():
print("Hello world!")

if __name__ == '__main__':
main()
7 changes: 7 additions & 0 deletions Lib/__phello__/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
initialized = True

def main():
print("Hello world!")

if __name__ == '__main__':
main()
Empty file added Lib/__phello__/ham/__init__.py
Empty file.
Empty file added Lib/__phello__/ham/eggs.py
Empty file.
7 changes: 7 additions & 0 deletions Lib/__phello__/spam.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
initialized = True

def main():
print("Hello world!")

if __name__ == '__main__':
main()
83 changes: 0 additions & 83 deletions Lib/importlib/_adapters.py

This file was deleted.

Loading