/usr/lib64/python2.6/site-packages/mx/URL
NameSizeModeActions
mxURL/-0755rm
COPYRIGHT10300644editdlrm
LazyModule.py44000644editdlrm
LazyModule.pyc42370644editdlrm
LazyModule.pyo42370644editdlrm
LICENSE45870644editdlrm
Listing.py34070644editdlrm
Listing.pyc34170644editdlrm
Listing.pyo34170644editdlrm
README1420644editdlrm
URL.py91160644editdlrm
URL.pyc89660644editdlrm
URL.pyo89110644editdlrm
__init__.py7210644editdlrm
__init__.pyc11820644editdlrm
__init__.pyo11820644editdlrm
Edit: /usr/lib64/python2.6/site-packages/mx/URL/__init__.py (721B)
""" mxURL - A URL datatype. Copyright (c) 2000, Marc-Andre Lemburg; mailto:mal@lemburg.com Copyright (c) 2000-2008, eGenix.com Software GmbH; mailto:info@egenix.com See the documentation for further information on copyrights, or contact the author. All Rights Reserved. """ from URL import * from URL import __version__ # # Make URLs pickleable # # Shortcut for pickle (reduces the pickle's length) def _URL(url, RawURL=RawURL): return RawURL(url) # Module init class _modinit: ### Register the type import copy_reg def pickle_URL(url): return _URL,(url.string,) copy_reg.pickle(URLType, pickle_URL, _URL) del _modinit