This website requires JavaScript.
Explore
Help
Sign In
Mirror
/
cpython
mirror of
https://github.com/python/cpython
Watch
4
Star
1
Fork
You've already forked cpython
0
Code
Issues
Releases
Wiki
Activity
a7614d08bf
cpython
/
Lib
/
test
/
test_future4.py
7 lines
105 B
Python
Raw
Normal View
History
Unescape
Escape
Merged revisions 61954,61956-61957 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r61954 | christian.heimes | 2008-03-26 23:20:26 +0100 (Wed, 26 Mar 2008) | 1 line Surround p_flags access with #ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD ........ r61956 | christian.heimes | 2008-03-26 23:51:58 +0100 (Wed, 26 Mar 2008) | 1 line Initialize PyCompilerFlags cf_flags with 0 ........ r61957 | christian.heimes | 2008-03-26 23:55:31 +0100 (Wed, 26 Mar 2008) | 1 line I forgot to svn add the future test ........
2008-03-26 20:24:27 -03:00
from
__future__
import
unicode_literals
import
unittest
if
__name__
==
"
__main__
"
:
#17303: test_future* now work with unittest test discovery. Patch by Zachary Ware.
2013-02-27 04:00:03 -04:00
unittest
.
main
(
)