├── .gitignore ├── README.md └── bugs ├── accumulate_bug.py ├── bytearray_bug.py ├── bytesio_bug.py ├── calliter_bug.py ├── cell_bug.py ├── classdict_bug.py ├── common ├── __init__.py └── common.py ├── count_bug.py ├── decimal_context_bug.py ├── divmod_bug.py ├── ga_repr_bug.py ├── ga_subscr_bug.py ├── groupby_bug.py ├── iter_bug.py ├── longrange_bug.py ├── mappingproxy_bug.py ├── memoryview_cmp_bug.py ├── memoryview_subscr_bug.py ├── mro_bug.py ├── namespace_bug.py ├── oserror_bug.py ├── partial_bug.py └── try_except_star_bug.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/README.md -------------------------------------------------------------------------------- /bugs/accumulate_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/accumulate_bug.py -------------------------------------------------------------------------------- /bugs/bytearray_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/bytearray_bug.py -------------------------------------------------------------------------------- /bugs/bytesio_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/bytesio_bug.py -------------------------------------------------------------------------------- /bugs/calliter_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/calliter_bug.py -------------------------------------------------------------------------------- /bugs/cell_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/cell_bug.py -------------------------------------------------------------------------------- /bugs/classdict_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/classdict_bug.py -------------------------------------------------------------------------------- /bugs/common/__init__.py: -------------------------------------------------------------------------------- 1 | from .common import * -------------------------------------------------------------------------------- /bugs/common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/common/common.py -------------------------------------------------------------------------------- /bugs/count_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/count_bug.py -------------------------------------------------------------------------------- /bugs/decimal_context_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/decimal_context_bug.py -------------------------------------------------------------------------------- /bugs/divmod_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/divmod_bug.py -------------------------------------------------------------------------------- /bugs/ga_repr_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/ga_repr_bug.py -------------------------------------------------------------------------------- /bugs/ga_subscr_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/ga_subscr_bug.py -------------------------------------------------------------------------------- /bugs/groupby_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/groupby_bug.py -------------------------------------------------------------------------------- /bugs/iter_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/iter_bug.py -------------------------------------------------------------------------------- /bugs/longrange_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/longrange_bug.py -------------------------------------------------------------------------------- /bugs/mappingproxy_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/mappingproxy_bug.py -------------------------------------------------------------------------------- /bugs/memoryview_cmp_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/memoryview_cmp_bug.py -------------------------------------------------------------------------------- /bugs/memoryview_subscr_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/memoryview_subscr_bug.py -------------------------------------------------------------------------------- /bugs/mro_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/mro_bug.py -------------------------------------------------------------------------------- /bugs/namespace_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/namespace_bug.py -------------------------------------------------------------------------------- /bugs/oserror_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/oserror_bug.py -------------------------------------------------------------------------------- /bugs/partial_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/partial_bug.py -------------------------------------------------------------------------------- /bugs/try_except_star_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jailctf/how2python/HEAD/bugs/try_except_star_bug.py --------------------------------------------------------------------------------