cosmopolitan/third_party/python/Lib/test/test_scratch.py
Justine Tunney 7061c79c22 Make fixes, improvements, and chibicc python bindings
- python now mixes audio 10x faster
- python octal notation is restored
- chibicc now builds code 3x faster
- chibicc now has help documentation
- chibicc can now generate basic python bindings
- linenoise now supports some paredit-like features

See #141
2021-10-08 08:41:57 -07:00

17 lines
269 B
Python

import os
import sys
import cosmo
import decimal
import unittest
exit1 = cosmo.exit1
class BooTest(unittest.TestCase):
def test_boo(self):
# cosmo.ftrace()
# eval('0')
# exit1()
pass
if __name__ == '__main__':
unittest.main()