Skip to content

Commit

Permalink
udpate pyasn1 submodule from 0.4.2 to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sameer-google authored and sushantkhanna committed Nov 28, 2024
1 parent c62b057 commit e64d1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/pyasn1
Submodule pyasn1 updated 99 files
+3 −0 .bandit.yml
+1 −0 .github/FUNDING.yml
+92 −0 .github/workflows/main.yml
+59 −0 .github/workflows/pypi.yml
+2 −0 .gitignore
+15 −0 .readthedocs.yaml
+0 −22 .travis.yml
+203 −3 CHANGES.rst
+1 −1 LICENSE.rst
+18 −14 README.md
+1 −0 THANKS.txt
+2 −1 devel-requirements.txt
+15 −5 docs/source/conf.py
+11 −4 docs/source/contents.rst
+3 −6 docs/source/download.rst
+3 −3 docs/source/example-use-case.rst
+7 −0 docs/source/index.rst
+18 −4 docs/source/pyasn1/contents.rst
+60 −0 docs/source/pyasn1/error/contents.rst
+10 −0 docs/source/pyasn1/type/base/asn1type.rst
+10 −0 docs/source/pyasn1/type/base/constructedasn1type.rst
+20 −0 docs/source/pyasn1/type/base/contents.rst
+6 −0 docs/source/pyasn1/type/base/novalue.rst
+10 −0 docs/source/pyasn1/type/base/simpleasn1type.rst
+1 −0 docs/source/pyasn1/type/constraint/contents.rst
+16 −0 docs/source/pyasn1/type/constraint/withcomponents.rst
+84 −10 docs/source/pyasn1/type/opentype/contents.rst
+1 −6 docs/source/pyasn1/type/opentype/opentype.rst
+3 −3 docs/source/pyasn1/type/univ/choice.rst
+0 −4 docs/source/pyasn1/type/univ/contents.rst
+6 −5 docs/source/pyasn1/type/univ/sequence.rst
+5 −5 docs/source/pyasn1/type/univ/sequenceof.rst
+5 −5 docs/source/pyasn1/type/univ/set.rst
+5 −5 docs/source/pyasn1/type/univ/setof.rst
+2 −7 pyasn1/__init__.py
+1,245 −435 pyasn1/codec/ber/decoder.py
+349 −116 pyasn1/codec/ber/encoder.py
+3 −3 pyasn1/codec/ber/eoo.py
+63 −28 pyasn1/codec/cer/decoder.py
+114 −79 pyasn1/codec/cer/encoder.py
+45 −19 pyasn1/codec/der/decoder.py
+30 −11 pyasn1/codec/der/encoder.py
+112 −82 pyasn1/codec/native/decoder.py
+93 −37 pyasn1/codec/native/encoder.py
+234 −0 pyasn1/codec/streaming.py
+3 −0 pyasn1/compat/__init__.py
+0 −33 pyasn1/compat/binary.py
+0 −20 pyasn1/compat/calling.py
+0 −22 pyasn1/compat/dateandtime.py
+7 −104 pyasn1/compat/integer.py
+0 −46 pyasn1/compat/octets.py
+0 −26 pyasn1/compat/string.py
+33 −32 pyasn1/debug.py
+94 −7 pyasn1/error.py
+159 −103 pyasn1/type/base.py
+53 −86 pyasn1/type/char.py
+245 −50 pyasn1/type/constraint.py
+2 −2 pyasn1/type/error.py
+23 −32 pyasn1/type/namedtype.py
+5 −4 pyasn1/type/namedval.py
+38 −9 pyasn1/type/opentype.py
+9 −7 pyasn1/type/tag.py
+7 −7 pyasn1/type/tagmap.py
+703 −437 pyasn1/type/univ.py
+9 −11 pyasn1/type/useful.py
+5 −0 pyproject.toml
+55 −2 setup.cfg
+4 −114 setup.py
+3 −7 tests/__main__.py
+3 −8 tests/base.py
+5 −8 tests/codec/__main__.py
+3 −7 tests/codec/ber/__main__.py
+993 −391 tests/codec/ber/test_decoder.py
+351 −201 tests/codec/ber/test_encoder.py
+3 −7 tests/codec/cer/__main__.py
+318 −20 tests/codec/cer/test_decoder.py
+336 −104 tests/codec/cer/test_encoder.py
+3 −7 tests/codec/der/__main__.py
+303 −15 tests/codec/der/test_decoder.py
+296 −40 tests/codec/der/test_encoder.py
+3 −7 tests/codec/native/__main__.py
+3 −8 tests/codec/native/test_decoder.py
+6 −12 tests/codec/native/test_encoder.py
+70 −0 tests/codec/test_streaming.py
+4 −9 tests/compat/__main__.py
+0 −56 tests/compat/test_binary.py
+0 −53 tests/compat/test_integer.py
+0 −117 tests/compat/test_octets.py
+3 −8 tests/test_debug.py
+3 −7 tests/type/__main__.py
+13 −30 tests/type/test_char.py
+99 −14 tests/type/test_constraint.py
+3 −8 tests/type/test_namedtype.py
+7 −12 tests/type/test_namedval.py
+5 −11 tests/type/test_opentype.py
+7 −12 tests/type/test_tag.py
+462 −165 tests/type/test_univ.py
+9 −14 tests/type/test_useful.py
+54 −0 tox.ini

0 comments on commit e64d1d4

Please sign in to comment.