Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
this script can either show the munged version of a Python program, or show the diff. Typical output: ```diff $ circuitpython-munge src/bundle/libraries/helpers/requests/adafruit_requests.py --diff --- src/bundle/libraries/helpers/requests/adafruit_requests.py +++ src/bundle/libraries/helpers/requests/adafruit_requests.munged.py @@ -33,7 +33,7 @@ """ -__version__ = "0.0.0+auto.0" +__version__ = "munged-version" __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Requests.git" import errno @@ -41,7 +41,7 @@ import json as json_module -if not sys.implementation.name == "circuitpython": +if 0: from ssl import SSLContext from types import ModuleType, TracebackType from typing import Any, Dict, Optional, Tuple, Type, Union ```