- Fixed: inode should be unsigned.
- Fixed unicode handling on PyPy due to Py_FileSystemDefaultEncoding always being NULL there.
- Improve tests on PyPy and Windows.
- Add Travis and Appveyor CI testing.
Details
Details
- Reviewers
JoshStrobl - Group Reviewers
Triage Team - Commits
- R3690:1bb3569cd99c: Update python-scandir to 1.6
Tested with python-pickleshare, the only current reverse dependency.
from pickleshare import *
db = PickleShareDB('~/testpickleshare')
db.clear()
print("Should be empty:", db.items())
db['hello'] = 15
db['aku ankka'] = [1,2,313]
db['paths/are/ok/key'] = [1,(5,46)]
print(db.keys())Diff Detail
Diff Detail
- Repository
- R3690 python-scandir
- Lint
Lint Not Applicable - Unit
Tests Not Applicable