From 89d69b16110eb8c716cd09e1684b93fb179a78f4 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 12 Jun 2016 21:52:12 +0300 Subject: [PATCH] os: Add "remove" as an alias to "unlink". --- os/os/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/os/os/__init__.py b/os/os/__init__.py index dcf10426..ea6a37c9 100644 --- a/os/os/__init__.py +++ b/os/os/__init__.py @@ -87,6 +87,7 @@ def rename(old, new): def unlink(name): e = unlink_(name) check_error(e) +remove = unlink def rmdir(name): e = rmdir_(name)