mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-05 11:38:22 +00:00
16 lines
244 B
Python
16 lines
244 B
Python
# -*- test-case-name: twisted.python.test.test_url -*-
|
|
# Copyright (c) Twisted Matrix Laboratories.
|
|
# See LICENSE for details.
|
|
|
|
"""
|
|
URL parsing, construction and rendering.
|
|
|
|
@see: L{URL}
|
|
"""
|
|
|
|
from hyperlink import URL
|
|
|
|
__all__ = [
|
|
"URL",
|
|
]
|