Page MenuHomeFreeBSD

editors/sublime: amend patches
ClosedPublic

Authored by xmj on Oct 7 2014, 1:18 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 13 2024, 10:52 PM
Unknown Object (File)
Feb 13 2024, 6:17 PM
Unknown Object (File)
Jan 23 2024, 11:55 PM
Unknown Object (File)
Dec 19 2023, 10:44 PM
Unknown Object (File)
Nov 30 2023, 5:26 AM
Unknown Object (File)
Nov 22 2023, 10:28 PM
Unknown Object (File)
Nov 22 2023, 10:02 PM
Unknown Object (File)
Nov 22 2023, 9:10 PM
Subscribers

Details

Reviewers
swills
koobs
Summary

Remove an import statement in patched PackageSetupy.py that was deprecated
before python 2.7

Test Plan

Diff Detail

Repository
rP FreeBSD ports repository
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

xmj retitled this revision from to editors/sublime: amend patches.
xmj updated this object.
xmj edited the test plan for this revision. (Show Details)
xmj added reviewers: swills, koobs.
swills edited edge metadata.

Approved, looks fine.

This revision is now accepted and ready to land.Oct 7 2014, 2:09 PM

Committed revision 370338.

It is work here:

Python 2.7.8 (default, Sep 25 2014, 23:51:23) 
[GCC 4.2.1 Compatible FreeBSD Clang 3.4.1 (tags/RELEASE_34/dot1-final 208032)] on freebsd11
Type "help", "copyright", "credits" or "license" for more information.
>>> from __future__ import with_statement
>>>

But it doesn't needed on python 2.7 because "with" works out of the box. Anyway, what problem this patch is solving?