Browse Source

remove old code

frabbit 11 years ago
parent
commit
5da60f3e41
1 changed files with 0 additions and 5 deletions
  1. 0 5
      std/python/Lib.hx

+ 0 - 5
std/python/Lib.hx

@@ -12,8 +12,6 @@ class Lib {
 
 
 		PySys.stdout.buffer.write( PyStringTools.encode(str, "utf-8"));
 		PySys.stdout.buffer.write( PyStringTools.encode(str, "utf-8"));
 		PySys.stdout.flush();
 		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 {
 	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.buffer.write( PyStringTools.encode('$str\n', "utf-8"));
 		PySys.stdout.flush();
 		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> {
 	public static function toPythonIterable <T>(it:Iterable<T>):python.lib.Types.NativeIterable<T> {