/usr/lib/python3/dist-packages/uncertainties/1to2.py is in python3-uncertainties 2.4.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/usr/bin/env python
'''
Fixes code like the 2to3 Python utility, but with fixers from the local fixes
directory.
(c) 2013 by Eric O. LEBIGOT (EOL).
'''
# Code inspired by the 2to3 Python code.
import sys
if sys.version_info < (2, 6):
sys.exit("Please run this program with Python 2.6+.")
import lib2to3.main
sys.exit(lib2to3.main.main('uncertainties.lib1to2.fixes'))
|