/usr/share/sumo/tools/lib/sumonet.py is in sumo-tools 0.15.0~dfsg-2.
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 | """
@file sumonet.py
@author Daniel Krajzewicz
@author Laura Bieker
@author Michael Behrisch
@date 2008-03-27
@version $Id: sumonet.py 11671 2012-01-07 20:14:30Z behrisch $
Deprecated version of sumolib/net.py.
SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/
Copyright (C) 2008-2012 DLR (http://www.dlr.de/) and contributors
All rights reserved
"""
import os, sys
print >> sys.stderr, "Using this library is deprecated, please use sumolib.net instead!"
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from sumolib.net import *
|