mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
f531629a9b
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
16 lines
216 B
Python
16 lines
216 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
try:
|
|
import StringIO
|
|
except ImportError:
|
|
import io as StringIO
|
|
|
|
try:
|
|
from cStringIO import StringIO as cStringIO
|
|
except ImportError:
|
|
cStringIO = None
|
|
|
|
|
|
def u(s):
|
|
return s
|