Browse Source

[python] remove Todo, small cleanup Re

frabbit 8 years ago
parent
commit
25afd53bbb
1 changed files with 0 additions and 10 deletions
  1. 0 10
      std/python/lib/Re.hx

+ 0 - 10
std/python/lib/Re.hx

@@ -23,21 +23,15 @@ package python.lib;
 
 import python.Tuple;
 
-
 private abstract Choice <A,B>(Dynamic) {
 	@:from public static inline function fromA <A,B>(x:A):Choice<A,B> return cast x;
 	@:from public static inline function fromB <A,B>(x:B):Choice<A,B> return cast x;
 }
 
-typedef TODO = Dynamic;
-
 typedef Pattern = Choice<String, Regex>;
 
 typedef Repl = Choice<String, MatchObject->String>;
 
-
-
-
 extern class MatchObject
 {
 
@@ -160,8 +154,6 @@ extern class Re
 	public static var U:Int;
 	public static var UNICODE:Int;
 
-
-
 	public static function compile (pattern:String, ?flags:Int = 0):Regex;
 
 	public static function match (pattern:Pattern, string:String, flags:Int = 0):Null<MatchObject>;
@@ -175,7 +167,6 @@ extern class Re
 		return python.Syntax.field(pattern, "findall")(string, flags);
 	}
 
-
 	public static inline function findallString(pattern:Pattern, string:String,	flags:Int=0):Array<String>
 	{
 		return python.Syntax.field(pattern, "findall")(string, flags);
@@ -193,7 +184,6 @@ extern class Re
 
 	public static function finditer(pattern:Pattern, string:String,   flags:Int=0):NativeIterator<MatchObject>;
 
-
 	@:overload(function (pattern:Pattern, repl:String, string:String,  ?count:Int=0, ?flags:Int=0):String {})
 	public static function sub(pattern:Pattern, repl:MatchObject->String, string:String,  ?count:Int=0, ?flags:Int=0):String;