##// END OF EJS Templates
help: remove references to "Python 2.6 or later"...
help: remove references to "Python 2.6 or later" We require Python 2.6. So there is no value to these docs.

File last commit:

r28835:68a946e8 default
r28846:18f2fc51 default
Show More
pycompat.py
32 lines | 693 B | text/x-python | PythonLexer
# pycompat.py - portability shim for python 3
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
"""Mercurial portability shim for python 3.
This contains aliases to hide python version-specific details from the core.
"""
from __future__ import absolute_import
try:
import cStringIO as io
stringio = io.StringIO
except ImportError:
import io
stringio = io.StringIO
try:
import Queue as _queue
_queue.Queue
except ImportError:
import queue as _queue
empty = _queue.Empty
queue = _queue.Queue
try:
xrange
except NameError:
import builtins
builtins.xrange = range