Metadata-Version: 2.1
Name: ruamel.std.typing
Version: 0.1.2
Summary: wrapper to handle dependency differences between version, and missing Text in 3.5.0/1
Home-page: https://sourceforge.net/p/ruamel-std-typing/code/ci/default/tree
Author: Anthon van der Neut
Author-email: a.van.der.neut@ruamel.eu
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Description-Content-Type: text/x-rst
Requires-Dist: typing ; python_version < "3.5"


ruamel.std.typing
=================


`package ruamel.std.pathlib <https://bitbucket.org/ruamel/std.typing>`_ is a drop-in
replacement to extend the Python standard `typing`` module.

- adds pip install dependency for 2.7/3.3/3.4
- adds Text for 3.5.0 and 3.5.1

This package alleviates the need to do::

   import sys
   if sys.version_info >= (3, 5, 2):
       from typing import Dict, List, Any, Union, Text   # NOQA

instead you can just do::

   from ruamel.std.typing import Dict, List, Any, Union, Text


