mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
0c4c56ff39
README.cosmo contains the necessary links.
8 lines
238 B
Python
8 lines
238 B
Python
import sys
|
|
import unittest
|
|
|
|
class FooTest(unittest.TestCase):
|
|
def test_foo(self):
|
|
# use 2.6 syntax to demonstrate conversion
|
|
print 'In test_foo, using Python %s...' % (sys.version_info,)
|
|
self.assertTrue(False)
|