This website requires JavaScript.
Explore
Help
Register
Sign In
Rooba
/
mitogen
mirror of
https://github.com/mitogen-hq/mitogen.git
Watch
1
Star
1
Fork
You've already forked mitogen
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
9d5b3d9e02
mitogen
/
tests
/
data
/
module_finder_testmod
/
regular_mod.py
7 lines
44 B
Python
Raw
Normal View
History
Unescape
Escape
Beginnings of module_finder_test
2017-10-02 08:24:01 +00:00
import
sys
def
say_hi
(
)
:
Initial Python 3.x port work. * ansible: use unicode_literals everywhere since it only needs to be compatible back to 2.6. * compat/collections.py: delete this entirely and rip out the parts of functools that require it. * Introduce serializable Kwargs dict subclass that translates keys to Unicode on instantiation. * enable_debug_logging() must set _v/_vv globals. * cStringIO does not exist in 3.x. * Treat IOLogger and LogForwarder input as latin-1. * Avoid ResourceWarnings in first stage by explicitly closing fps. * Fix preamble_size.py syntax errors.
2018-04-17 16:40:45 +00:00
print
(
'
hi
'
)