File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'PythonKit'
3
- s . version = '0.3.1 '
3
+ s . version = '0.3.3 '
4
4
s . summary = 'Swift framework to interact with Python.'
5
5
6
6
s . homepage = 'https://github.com/leggenda47/PythonKit'
Original file line number Diff line number Diff line change 25
25
26
26
/// Typealias used when passing or returning a `PyObject` pointer with
27
27
/// implied ownership.
28
- @usableFromInline
29
- typealias OwnedPyObjectPointer = PyObjectPointer
28
+ public typealias OwnedPyObjectPointer = PyObjectPointer
30
29
31
30
/// A primitive reference to a Python C API `PyObject`.
32
31
///
Original file line number Diff line number Diff line change 18
18
// Required Python typealiases and constants.
19
19
//===----------------------------------------------------------------------===//
20
20
21
- @usableFromInline
22
- typealias PyObjectPointer = UnsafeMutableRawPointer
21
+ public typealias PyObjectPointer = UnsafeMutableRawPointer
23
22
typealias PyMethodDefPointer = UnsafeMutableRawPointer
24
23
typealias PyCCharPointer = UnsafePointer < Int8 >
25
24
typealias PyBinaryOperation =
You can’t perform that action at this time.
0 commit comments