pfalcon / pycopy-lib

Standard library of the Pycopy project, minimalist and light-weight Python language implementation
https://github.com/pfalcon/pycopy
Other
246 stars 70 forks source link

os.path: adds realpath() method #61

Closed MaxTurchin closed 3 years ago

MaxTurchin commented 3 years ago

os.path: adds realpath() method os.path: depends on ffilib

os.path imports os which relies on ffilib, so it looks to me as if ffilib should be added to dependencies either way. If there's no ffilib available, import of os.path will fail.

pfalcon commented 3 years ago

@MaxTurchin, thanks for the update, and sorry for nitpicking, but can you please capitalize first letters of textual description in the description, as was suggested in #60, e.g.: os.path: Add ...

MaxTurchin commented 3 years ago

@MaxTurchin, thanks for the update, and sorry for nitpicking, but can you please capitalize first letters of textual description in the description, as was suggested in #60, e.g.: os.path: Add ...

Not a problem :)

pfalcon commented 3 years ago

Thanks, merged. Test added: https://github.com/pfalcon/pycopy-lib/blob/master/os.path/test_realpath.py