@@ -93,7 +93,7 @@ class Sys {
}
case "win32" | "cygwin":
- python.lib.Msvrt.getch();
+ python.lib.Msvcrt.getch();
case x :
throw "platform " + x + " not supported";
@@ -1,14 +1,14 @@
package python.lib;
-extern class Msvrt {
+extern class Msvcrt {
public static function getch ():String;
static function __init__ ():Void
{
try {
- python.Macros.importAs("msvrt", "python.lib.Msvrt");
+ python.Macros.importAs("msvrt", "python.lib.Msvcrt");
} catch (e:Dynamic) {}