mirror of
https://github.com/micropython/micropython.git
synced 2025-09-08 19:00:50 +02:00
4 lines
187 B
Python
4 lines
187 B
Python
# Implemented in Python to support keyword arguments
|
|
def open(stream, *, flags=0, cachesize=0, pagesize=0, minkeypage=0):
|
|
return _open(stream, flags, cachesize, pagesize, minkeypage)
|