|
@@ -12,8 +12,6 @@ class Lib {
|
|
|
|
|
|
PySys.stdout.buffer.write( PyStringTools.encode(str, "utf-8"));
|
|
|
PySys.stdout.flush();
|
|
|
- //untyped __python__('_hx_sys.stdout.buffer.write(("%s"%str).encode(\'utf-8\'))');
|
|
|
- //untyped __python__('_hx_sys.stdout.flush()');
|
|
|
}
|
|
|
|
|
|
public static function println(v:Dynamic):Void {
|
|
@@ -21,9 +19,6 @@ class Lib {
|
|
|
|
|
|
PySys.stdout.buffer.write( PyStringTools.encode('$str\n', "utf-8"));
|
|
|
PySys.stdout.flush();
|
|
|
-
|
|
|
- //untyped __python__('_hx_sys.stdout.buffer.write(("%s\\n"%str).encode(\'utf-8\'))');
|
|
|
- //untyped __python__('_hx_sys.stdout.flush()');
|
|
|
}
|
|
|
|
|
|
public static function toPythonIterable <T>(it:Iterable<T>):python.lib.Types.NativeIterable<T> {
|