Page MenuHomeFreeBSD

editors/sublime: amend patches
ClosedPublic

Authored by xmj on Oct 7 2014, 1:18 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Mar 3, 1:21 AM
Unknown Object (File)
Sat, Mar 1, 5:09 PM
Unknown Object (File)
Sat, Mar 1, 2:12 PM
Unknown Object (File)
Sat, Mar 1, 12:49 PM
Unknown Object (File)
Feb 16 2025, 1:45 PM
Unknown Object (File)
Jan 18 2025, 6:54 PM
Unknown Object (File)
Dec 7 2024, 12:45 PM
Unknown Object (File)
Sep 27 2024, 8:02 AM
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?