Page MenuHomeSolus

Update python-scandir to 1.6
ClosedPublic

Authored by EP01 on Sep 30 2017, 3:18 PM.
Tags
None
Referenced Files
F11011671: D1109.id2881.diff
Thu, Aug 3, 7:01 PM
F10988332: D1109.diff
Mon, Jul 24, 10:07 AM
F10780837: D1109.id2682.diff
May 25 2023, 4:13 AM
F10780133: D1109.diff
May 24 2023, 10:47 PM
F10779915: D1109.id2881.diff
May 24 2023, 9:10 PM
F10731366: D1109.diff
May 11 2023, 5:21 AM
F10711612: D1109.id2881.diff
Apr 30 2023, 2:20 AM
F10706163: D1109.id.diff
Apr 26 2023, 5:05 PM
Subscribers
None

Details

Summary
  • 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.
Test Plan

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

Repository
R3690 python-scandir
Lint
Lint Not Applicable
Unit
Tests Not Applicable