Modules providing forward compatibility across some Python 2.x versions
Project description
Forward compatibility for Python packages, allowing future constructs to be borrowed before they’re available in the standard library.
This package is generally deprecated in favor of more surgical backports in separate packages.
Usage
Import functions from the appropriate pyXXcompat module in your python code. When you’re eventually ready to upgrade beyond pyXX, you can easily locate (with a grep) and replace those functions with the canonical implementations.
Example
Say you want a namedtuple (introduced in Python 2.6) in a project which supports Python 2.5 and greater:
from py25compat import namedtuple MyTuple = namedtuple('MyTuple', 'a b c') mt = MyTuple(1,2,3)
With jaraco.compat installed, this code will run on Python 2.5 and greater. When the project is ready to move to Python 2.6, one can easily grep for py25compat and make the necessary replacements with minimal impact on the code. In this case:
from collections import namedtuple MyTuple = namedtuple('MyTuple', 'a b c') mt = MyTuple(1,2,3)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for jaraco.compat-2.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7e93c2bd6c156d7eacec09d73de2f3e73de2302e9486262d7a6f867d99eb11c |
|
MD5 | 23edfdfa7ce2e60648ecb629ae7f9512 |
|
BLAKE2b-256 | f0310d468d0a11e6bde941a79d50d164ee0624333d7f425eeae31f26cfc93f51 |