mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-45020: Add more test cases for frozen modules. (gh-28664)
I've added a number of test-only modules. Some of those cases are covered by the recently frozen stdlib modules (and some will be once we add encodings back in). However, I figured we'd play it safe by having a set of modules guaranteed to be there during tests. https://bugs.python.org/issue45020
This commit is contained in:
parent
ec4d917a6a
commit
7e5c107541
13 changed files with 204 additions and 23 deletions
7
Lib/__phello__/spam.py
Normal file
7
Lib/__phello__/spam.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
initialized = True
|
||||
|
||||
def main():
|
||||
print("Hello world!")
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Add table
Add a link
Reference in a new issue