Skip to content

Commit 58a4ce3

Browse files
committed
Fix documentation
1 parent 05597f7 commit 58a4ce3

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

python/docs/reference.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can import next components directly from `firebird.uuid` module:
1010

1111
- from `.model`: `.NodeType`, `.Node`, `.IANA_ROOT_NAME`
1212
- from `.spec`: `.get_specification`, `.get_specifications`, `.parse_specifications`, `.ROOT_SPEC`
13-
- from `.registry`: `.registry`, `.OIDRegistry`
13+
- from `~.firebird.uuid.registry`: `~firebird.uuid.registry.registry`, `.OIDRegistry`
1414

1515
Sub-modules
1616
===========

python/src/firebird/uuid/spec.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,7 @@
7474

7575
class LocalFileAdapter(requests.adapters.BaseAdapter):
7676
"""Protocol Adapter to allow Requests to GET file:// URLs
77-
78-
@todo: Properly handle non-empty hostname portions.
7977
"""
80-
8178
@staticmethod
8279
def _chkpath(method, path):
8380
"""Return an HTTP status for the given filesystem path."""
@@ -96,10 +93,6 @@ def _chkpath(method, path):
9693

9794
def send(self, req, **kwargs): # pylint: disable=unused-argument
9895
"""Return the file specified by the given request
99-
100-
@type req: C{PreparedRequest}
101-
@todo: Should I bother filling `response.headers` and processing
102-
If-Modified-Since and friends using `os.stat`?
10396
"""
10497
path = os.path.normcase(os.path.normpath(url2pathname(req.path_url)))
10598
response = requests.Response()

0 commit comments

Comments
 (0)