|
|
| LEFT | RIGHT |
|---|---|
| 1 from test import support | 1 from test import support |
| 2 import unittest | 2 import unittest |
| 3 import codecs | 3 import codecs |
| 4 import sys, _testcapi, io | 4 import sys, _testcapi, io |
| 5 | 5 |
| 6 class Queue(object): | 6 class Queue(object): |
| 7 """ | 7 """ |
| 8 queue: write bytes at one end, read bytes from the other end | 8 queue: write bytes at one end, read bytes from the other end |
| 9 """ | 9 """ |
| 10 def __init__(self, buffer): | 10 def __init__(self, buffer): |
| (...skipping 1488 matching lines...) | | Loading... | |
| 1499 StreamReaderTest, | 1499 StreamReaderTest, |
| 1500 EncodedFileTest, | 1500 EncodedFileTest, |
| 1501 BasicUnicodeTest, | 1501 BasicUnicodeTest, |
| 1502 CharmapTest, | 1502 CharmapTest, |
| 1503 WithStmtTest, | 1503 WithStmtTest, |
| 1504 ) | 1504 ) |
| 1505 | 1505 |
| 1506 | 1506 |
| 1507 if __name__ == "__main__": | 1507 if __name__ == "__main__": |
| 1508 test_main() | 1508 test_main() |
| LEFT | RIGHT |