from collections import OrderedDict
from pip._vendor.toml import TomlEncoder
from pip._vendor.toml import TomlDecoder
class TomlOrderedDecoder(TomlDecoder):
def __init__(self):
super(self.__class__, self).__init__(_dict=OrderedDict)
class TomlOrderedEncoder(TomlEncoder):
def __init__(self):
super(self.__class__, self).__init__(_dict=OrderedDict)
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.py | File | 747 B | 0644 |
|
| common.py | File | 242 B | 0644 |
|
| decoder.py | File | 37.79 KB | 0644 |
|
| encoder.py | File | 9.72 KB | 0644 |
|
| ordered.py | File | 378 B | 0644 |
|
| tz.py | File | 618 B | 0644 |
|