os.path: Start implementing module.

pull/118/head
Paul Sokolovsky 2014-05-09 23:34:23 +03:00
rodzic 87724fadda
commit 6074bd8e43
2 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,2 @@
def normcase(s):
return s

10
os.path/setup.py 100644
Wyświetl plik

@ -0,0 +1,10 @@
from distutils.core import setup
setup(name='micropython-os.path',
version='0.0.1',
description='os.path module for MicroPython',
url='https://github.com/micropython/micropython/issues/405',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
license='MIT',
packages=['os'])