url.py 244 B

123456789101112131415
  1. # -*- test-case-name: twisted.python.test.test_url -*-
  2. # Copyright (c) Twisted Matrix Laboratories.
  3. # See LICENSE for details.
  4. """
  5. URL parsing, construction and rendering.
  6. @see: L{URL}
  7. """
  8. from hyperlink import URL
  9. __all__ = [
  10. "URL",
  11. ]