]> Cypherpunks.ru repositories - pyderasn.git/blobdiff - pyderasn.py
Mention --browse
[pyderasn.git] / pyderasn.py
index 7ce0565e5da91bd6d57c454752f0a329bc17e3d9..a4b7deb7e3b6e86983fa0695cb2d6a356db10d7e 100755 (executable)
@@ -20,7 +20,7 @@
 """Python ASN.1 DER/BER codec with abstract structures
 
 This library allows you to marshal various structures in ASN.1 DER
-format, unmarshal them in BER/CER/DER ones.
+format, unmarshal BER/CER/DER ones.
 
     >>> i = Integer(123)
     >>> raw = i.encode()
@@ -7486,6 +7486,8 @@ def browse(raw, obj, oid_maps=()):
     If you press **d**, then current element will be saved in the
     current directory under its decode path name (adding ".0", ".1", etc
     suffix if such file already exists). **D** will save it with explicit tag.
+
+    You can also invoke it with ``--browse`` command line argument.
     """
     from copy import deepcopy
     from os.path import exists as path_exists