Skip to content

Commit 04f93ff

Browse files
committed
Updated for Swift 5 compiler changes
1 parent ac9a894 commit 04f93ff

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

Package.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ let package = Package(
1515
targets: [
1616
.target(name: "PythonTool", dependencies: ["LoggerKit", "CommandLineKit", "PythonKit"], path: "PythonTool"),
1717
.target(name: "PythonKit", path: "PythonKit"),
18-
],
19-
swiftLanguageVersions: [.v4_2]
18+
]
2019
)

PythonKit/Python.swift

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,6 @@ extension PythonObject : CustomStringConvertible {
124124
}
125125
}
126126

127-
// Make `PythonObject` show up nicely in the Xcode Playground results sidebar.
128-
extension PythonObject : CustomPlaygroundQuickLookable {
129-
public var customPlaygroundQuickLook: PlaygroundQuickLook {
130-
return .text(description)
131-
}
132-
}
133-
134127
// Mirror representation, used by debugger/REPL.
135128
extension PythonObject : CustomReflectable {
136129
public var customMirror: Mirror {

0 commit comments

Comments
 (0)