This commit is contained in:
Dante
2026-05-21 23:40:20 -07:00
parent 3e2915dff7
commit 877a69d844
5737 changed files with 29796 additions and 1589684 deletions

View File

@ -57,6 +57,12 @@ extern class Os {
static function putenv(name:String, value:String):Void;
/** Removes the value for the environment variable `name`.
When targeting python versions prior to 3.9, this function may not exist on some platforms.
**/
static function unsetenv(name:String):Void;
static function chdir(path:String):Void;
static function unlink(path:String):Void;