Metadata-Version: 2.1
Name: try-except
Version: 0.0.5
Summary: Cheating Try Except
Home-page: https://github.com/NastyPigz/trycept
Author: NastyPigz
Author-email: capitalismdiscordbot@gmail.com
License: UNKNOWN
Description: # About
        ---
        
        ```py
        def try_except(t: func, ex: Exception = None):
          try:
            result = t()
            return result
          except Exception as e:
            if isinstance(e,ex):
              return e
            elif ex is None:
              return None
            else:
              return False
        ```
        
        ^^^ This is literally all the code
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
