Originally reported by: Bernhard Gschaider (Bitbucket: bgschaid, GitHub: bgschaid)
In the documentation it says
#!python
six.exec_(code, globals=None, locals=None)
but the implementation is
#!python
def exec_(code, globs=None, locs=None):
"""Execute code in a namespace."""
for the Python 2.x-branch
- Bitbucket: https://bitbucket.org/gutworth/six/issue/16
该提问来源于开源项目:benjaminp/six