Submit
Path:
~
/
/
lib
/
python3.8
/
site-packages
/
pip
/
_vendor
/
pytoml
/
File Content:
core.py
class TomlError(RuntimeError): def __init__(self, message, line, col, filename): RuntimeError.__init__(self, message, line, col, filename) self.message = message self.line = line self.col = col self.filename = filename def __str__(self): return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) def __repr__(self): return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename)
Submit
FILE
FOLDER
Name
Size
Permission
Action
__pycache__
---
0755
__init__.py
127 bytes
0644
core.py
509 bytes
0644
parser.py
10309 bytes
0644
test.py
1021 bytes
0644
utils.py
1665 bytes
0644
writer.py
3369 bytes
0644
N4ST4R_ID | Naxtarrr