Page MenuHomeSolus

Update py to 1.4.34
ClosedPublic

Authored by kyrios123 on Sep 23 2017, 6:28 PM.
Referenced Files
F11034598: D1070.id2602.diff
Wed, Aug 9, 4:57 PM
F11034597: D1070.id.diff
Wed, Aug 9, 4:57 PM
F11034595: D1070.id2575.diff
Wed, Aug 9, 4:57 PM
F11026476: D1070.diff
Wed, Aug 9, 2:25 AM
F10995544: D1070.id2575.diff
Wed, Jul 26, 5:26 AM
F10994971: D1070.id2602.diff
Wed, Jul 26, 1:52 AM
F10980465: D1070.diff
Sun, Jul 23, 3:54 AM
F10877665: D1070.diff
Jun 20 2023, 9:42 PM

Details

Summary
  • fix issue119 / pytest issue708 where tmpdir may fail to make numbered directories when the filesystem is case-insensitive.

Packaging:

  • remove check section as it doesn't do anything atm

Signed-off-by: Pierre-Yves <pyu@riseup.net>

Test Plan
>>> import py
>>> temppath = py.path.local('py.path_documentation')
>>> foopath = temppath.join('foo') # get child 'foo' (lazily)
>>> foopath.check() # check if child 'foo' exists
False
>>> foopath.write('bar') # write some data to it
>>> foopath.check()
True
>>> foopath.read()
'bar'
>>> foofile = foopath.open() # return a 'real' file object
>>> foofile.read(1)
'b'
>>> quit()

Diff Detail

Repository
R2499 py
Branch
master
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

Was this tested against py's reverse dep mccabe (and thus pylint flake8)?

In D1070#16728, @Justin wrote:

Was this tested against py's reverse dep mccabe (and thus pylint flake8)?

Nope it was tested with pytest by @EP01 in D1076

Aye, and I can also confirm mccabe and pylint are working as intended.

This revision is now accepted and ready to land.Sep 24 2017, 1:44 PM
This revision was automatically updated to reflect the committed changes.