pycall 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +6 -0
- data/ext/pycall/pycall.c +3 -2
- data/lib/pycall/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 381593af8570fc0a96f4df77aad616cf93cf86afa336b0be1618ac39c68fdd73
|
|
4
|
+
data.tar.gz: b1c8075e157dd32d4699ea6ae581d148c4ae537b77f60437a31a1940e31bf8fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a4d26affe26f179752eba471971dfbee4a3336faf7337696dd0cc6cc8b4462e6e8dc27a7bb8d53495178fe2b09fa95c11a6f1da3366a645ac9106248ba5b376
|
|
7
|
+
data.tar.gz: c72271ccdb5a50f47ced48619468114666e7767ff697ff385968e61e721f7f8449c79d86f218607f1a0fb67ec31ec88f843aeb5cab491fbd481025e3917b9df6
|
data/CHANGES.md
CHANGED
data/ext/pycall/pycall.c
CHANGED
|
@@ -792,8 +792,9 @@ pycall_libpython_helpers_m_compare(VALUE mod, VALUE op, VALUE pyptr_a, VALUE pyp
|
|
|
792
792
|
if (!res) {
|
|
793
793
|
pycall_pyerror_fetch_and_raise("PyObject_RichCompare in pycall_libpython_helpers_m_compare");
|
|
794
794
|
}
|
|
795
|
-
|
|
796
|
-
|
|
795
|
+
VALUE obj = pycall_pyobject_to_ruby(res);
|
|
796
|
+
pycall_Py_DecRef(res);
|
|
797
|
+
return obj;
|
|
797
798
|
}
|
|
798
799
|
|
|
799
800
|
static int is_pyobject_wrapper(VALUE obj);
|
data/lib/pycall/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pycall
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kenta Murata
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-08-
|
|
11
|
+
date: 2023-08-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -221,7 +221,7 @@ homepage: https://github.com/mrkn/pycall
|
|
|
221
221
|
licenses:
|
|
222
222
|
- MIT
|
|
223
223
|
metadata: {}
|
|
224
|
-
post_install_message:
|
|
224
|
+
post_install_message:
|
|
225
225
|
rdoc_options: []
|
|
226
226
|
require_paths:
|
|
227
227
|
- lib
|
|
@@ -236,8 +236,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
236
236
|
- !ruby/object:Gem::Version
|
|
237
237
|
version: '0'
|
|
238
238
|
requirements: []
|
|
239
|
-
rubygems_version: 3.3.
|
|
240
|
-
signing_key:
|
|
239
|
+
rubygems_version: 3.3.7
|
|
240
|
+
signing_key:
|
|
241
241
|
specification_version: 4
|
|
242
242
|
summary: pycall
|
|
243
243
|
test_files: []
|