We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 852c280 commit 23aee4fCopy full SHA for 23aee4f
Tests/PythonKitTests/PythonRuntimeTests.swift
@@ -36,6 +36,7 @@ class PythonRuntimeTests: XCTestCase {
36
XCTAssertEqual("d", dict["b"])
37
}
38
39
+ #if !os(Windows)
40
func testRange() {
41
let slice = PythonObject(5..<10)
42
XCTAssertEqual(Python.slice(5, 10), slice)
@@ -50,7 +51,6 @@ class PythonRuntimeTests: XCTestCase {
50
51
XCTAssertNil(Range<Int>(PythonObject(5...)))
52
53
- #if !os(Windows)
54
func testPartialRangeFrom() {
55
let slice = PythonObject(5...)
56
XCTAssertEqual(Python.slice(5, Python.None), slice)
0 commit comments