mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
12 lines
344 B
Python
12 lines
344 B
Python
![]() |
"""
|
||
|
This module contains compatibility helpers for Python 2/3 interoperability.
|
||
|
|
||
|
It mainly exists because their are certain incompatibilities in the Python
|
||
|
syntax that can only be solved by conditionally importing different functions.
|
||
|
"""
|
||
|
import sys
|
||
|
if sys.version_info[0] == 2:
|
||
|
str_ = unicode
|
||
|
elif sys.version_info[0] == 3:
|
||
|
str_ = str
|