This module provides several subtle things to support multiple Python versions (2.6, 2.7, 3.2, 3.3) and VM implementations (CPython, PyPy).
Makes string to str in Python 2. Makes string to bytes in Python 3.
Parameters: |
|
---|
(type) Type for representing binary data. str in Python 2 and bytes in Python 3.
alias of str
If filename is a text_type, encode it to binary_type according to filesystem’s default encoding.
(type, tuple) Types for file objects that have fileno().
Combine multiple context managers into a single nested context manager.
This function has been deprecated in favour of the multiple manager form of the with statement.
The one advantage of this function over the multiple manager form of the with statement is that argument unpacking allows it to be used with a variable number of context managers as follows:
- with nested(*managers):
- do_something()
(type) Type for text data. basestring in Python 2 and str in Python 3.
alias of basestring
Makes string to str in Python 3. Does nothing in Python 2.
Parameters: | string (bytes, str, unicode) – a string to cast it to text_type |
---|