Page MenuHomeSolus

Update py to 1.4.34
ClosedPublic

Authored by kyrios123 on Sep 23 2017, 6:28 PM.
Referenced Files
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
F10842903: D1070.diff
Jun 10 2023, 4:20 PM
F10831657: D1070.id.diff
Jun 5 2023, 2:39 PM
F10812237: D1070.id.diff
May 31 2023, 6:10 AM
F10802629: D1070.id2575.diff
May 29 2023, 8:00 AM

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
Lint
Lint Not Applicable
Unit
Tests Not Applicable

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.