stdlib/gzip.codon

pull/13/head
Ishak Numanagić 2022-01-24 06:07:24 +01:00
parent 04c54a2545
commit 8612416424
1 changed files with 6 additions and 1 deletions

View File

@ -1,2 +1,7 @@
def open(path: str, mode: str = 'r'):
# (c) 2022 Exaloop Inc. All rights reserved.
from internal.file import gzFile
def open(path: str, mode: str = "r") -> gzFile:
return gzFile(path, mode)