commit f0086fc6e899e5d766078390c31da01eaef0f7ac
Author: Damian Johnson <atagar(a)torproject.org>
Date: Mon Dec 4 11:47:32 2017 -0800
Drop date from get_authorities() docs
Oops, forgot we had a date in the docs. I've been keeping this information up
to date but not timestamp mentioned here.
https://trac.torproject.org/projects/tor/ticket/24512
---
stem/descriptor/remote.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/stem/descriptor/remote.py b/stem/descriptor/remote.py
index 04cc6b2c..dbba6857 100644
--- a/stem/descriptor/remote.py
+++ b/stem/descriptor/remote.py
@@ -899,9 +899,9 @@ DIRECTORY_AUTHORITIES = {
def get_authorities():
"""
- Provides the Tor directory authority information as of **Tor on 11/21/14**.
- The directory information hardcoded into Tor and occasionally changes, so the
- information this provides might not necessarily match your version of tor.
+ Provides cached Tor directory authority information. The directory
+ information hardcoded into Tor and occasionally changes, so the information
+ this provides might not necessarily match your version of tor.
:returns: **dict** of **str** nicknames to :class:`~stem.descriptor.remote.DirectoryAuthority` instances
"""
commit 94cb156c5fb9d1ad80665aafb9b5594ea9bf706b
Author: Damian Johnson <atagar(a)torproject.org>
Date: Mon Dec 4 11:41:35 2017 -0800
Drop line number from config.c link
The line number's a moving target we can't keep correct in practice...
https://trac.torproject.org/projects/tor/ticket/24512
---
stem/descriptor/remote.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stem/descriptor/remote.py b/stem/descriptor/remote.py
index 924db406..04cc6b2c 100644
--- a/stem/descriptor/remote.py
+++ b/stem/descriptor/remote.py
@@ -610,7 +610,7 @@ class DescriptorDownloader(object):
:param str authority_v3ident: fingerprint of the authority key for which
to get the consensus, see `'v3ident' in tor's config.c
- <https://gitweb.torproject.org/tor.git/tree/src/or/config.c#n819>`_
+ <https://gitweb.torproject.org/tor.git/tree/src/or/config.c>`_
for the values.
:param bool microdescriptor: provides the microdescriptor consensus if
**True**, standard consensus otherwise