Skip to content

gh-132983: Introduce compression package and move _compression module #133018

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 8 commits into from
Apr 27, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Add compression/__init__.py and revert tooling change
  • Loading branch information
emmatyping committed Apr 26, 2025
commit 2e1b2a8ddc718c603aef13969c6bbfa2bdef0f8f
Empty file added Lib/compression/__init__.py
Empty file.
12 changes: 2 additions & 10 deletions Tools/build/generate_stdlib_module_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,8 @@ def list_packages(names):
package_path = os.path.join(STDLIB_PATH, name)
if not os.path.isdir(package_path):
continue
# Walk the package directory to check if the package is a namespace
has_py_files = False
for root, _dirs, files in os.walk(package_path):
for file in files:
if file.endswith(".py"):
has_py_files = True
break
if has_py_files:
break
if has_py_files:
if any(package_file.endswith(".py")
for package_file in os.listdir(package_path)):
names.add(name)


Expand Down
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy