1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/pip/backwardcompat.py

101 lines
2.4 KiB
Python
Raw Normal View History

2011-03-15 20:49:48 +01:00
"""Stuff that differs in different Python versions"""
2009-11-20 08:10:46 +01:00
import sys
import site
__all__ = ['WindowsError']
try:
WindowsError = WindowsError
except NameError:
2011-03-15 20:49:48 +01:00
class NeverUsedException(Exception):
"""this exception should never be raised"""
WindowsError = NeverUsedException
2009-11-20 08:10:46 +01:00
console_encoding = sys.__stdout__.encoding
2011-03-15 20:49:48 +01:00
if sys.version_info >= (3,):
from io import StringIO, BytesIO
2011-03-15 20:49:48 +01:00
from functools import reduce
from urllib.error import URLError, HTTPError
from queue import Queue, Empty
from urllib.request import url2pathname
from urllib.request import urlretrieve
from email import message as emailmessage
import urllib.parse as urllib
import urllib.request as urllib2
import configparser as ConfigParser
import xmlrpc.client as xmlrpclib
import urllib.parse as urlparse
import http.client as httplib
2011-03-15 20:49:48 +01:00
def cmp(a, b):
return (a > b) - (a < b)
2011-03-15 20:49:48 +01:00
def b(s):
return s.encode('utf-8')
2011-03-15 20:49:48 +01:00
def u(s):
return s.decode('utf-8')
def console_to_str(s):
try:
return s.decode(console_encoding)
except UnicodeDecodeError:
return s.decode('utf_8')
def fwrite(f, s):
f.buffer.write(b(s))
bytes = bytes
2011-03-15 20:49:48 +01:00
string_types = (str,)
raw_input = input
else:
from cStringIO import StringIO
from urllib2 import URLError, HTTPError
from Queue import Queue, Empty
from urllib import url2pathname, urlretrieve
from email import Message as emailmessage
import urllib
import urllib2
import urlparse
import ConfigParser
import xmlrpclib
import httplib
2011-03-15 20:49:48 +01:00
def b(s):
return s
2011-03-15 20:49:48 +01:00
def u(s):
return s
def console_to_str(s):
return s
def fwrite(f, s):
f.write(s)
bytes = str
2011-03-15 20:49:48 +01:00
string_types = (basestring,)
reduce = reduce
cmp = cmp
raw_input = raw_input
BytesIO = StringIO
2011-03-15 20:49:48 +01:00
from distutils.sysconfig import get_python_lib, get_python_version
#site.USER_SITE was created in py2.6
user_site = getattr(site,'USER_SITE',None)
def product(*args, **kwds):
# product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
# product(range(2), repeat=3) --> 000 001 010 011 100 101 110 111
2011-03-15 20:49:48 +01:00
pools = list(map(tuple, args)) * kwds.get('repeat', 1)
result = [[]]
for pool in pools:
result = [x+[y] for x in result for y in pool]
for prod in result:
yield tuple(prod)