Commit Graph

3388 Commits

Author SHA1 Message Date
David Hewitt ab8925572b pyo3-benchmarks: add benchmark for class init 2021-06-22 07:33:46 +01:00
messense 64a0391fb1
Merge pull request #1685 from mejrs/fix_ui_tests
update error message for rust 1.53
2021-06-20 00:28:39 +08:00
mejrs 445f5163d4 update error message for rust 1.53 2021-06-19 16:11:03 +02:00
messense 9693604da7
Merge pull request #1676 from aviramha/patch-1
Add ormsgpack as an example in the README
2021-06-13 15:17:15 +08:00
Aviram Hassan 9f7dbceb19
Add ormsgpack as an example in the README 2021-06-13 07:54:41 +03:00
messense a298db2c06
Merge pull request #1674 from mejrs/make-clippy-happy
allow useless conversion (on some platforms)
2021-06-12 05:35:36 +08:00
messense 159a93d7b7
Merge pull request #1673 from messense/detect-python-implementation
Detect Python implementation from `SOABI` on Unix
2021-06-12 05:34:33 +08:00
David Hewitt 05e4bdf69c
Merge pull request #1670 from mejrs/num-dependency
Add docs + slight refactor for num-complex and num-bigint dependencies
2021-06-11 19:10:58 +01:00
mejrs c664ee77c9 allow useless conversion (on some platforms) 2021-06-11 19:56:17 +02:00
mejrs f50521a083 use Python::with_gil in tests 2021-06-10 14:24:11 +02:00
mejrs e2c698ad17 put * for version in cargo.toml examples 2021-06-09 15:39:33 +02:00
messense ceb6dbf766 Detect Python implementation from `SOABI` on Unix 2021-06-09 09:03:23 +08:00
mejrs 14eab0e0da remove must_use on pycomplex methods 2021-06-08 13:14:02 +02:00
mejrs 4a0ee6bf0f removed nalgebra test dep, add updating pyo3 vers 2021-06-08 13:13:44 +02:00
mejrs 4677eddf5a fixed dead module link on pypy 2021-06-08 13:11:04 +02:00
David Hewitt b081e37de5
Merge pull request #1665 from PyO3/kwds_varargs
Argument parsing: use VARARGS for *any* function taking **kwds
2021-06-07 23:23:05 +01:00
David Hewitt c0b0bb9f39
Merge pull request #1669 from PyO3/pymethod_cleanup
Reorganize method wrapper generation
2021-06-07 23:19:23 +01:00
mejrs d5d2cf9fda document + refactor numcomplex/bigint dependencies 2021-06-07 22:16:23 +02:00
mejrs a74c2d346f Merge branch 'PyO3:main' into num-dependency 2021-06-07 21:48:53 +02:00
Georg Brandl b60a56d9fd Reorganize method wrapper generation
Remove unneded splitting of functions in two, and reorder the
functions to order of the main match {} in gen_py_method().
2021-06-07 07:33:28 +02:00
Georg Brandl 6c3f688a60 Add more argument parsing benchmarks.
Change output so that benchmarks belonging together are shown together.
2021-06-06 16:20:09 +02:00
Georg Brandl f12c1a4005 Argument parsing: use VARARGS for *any* function taking **kwds 2021-06-06 15:58:19 +02:00
David Hewitt a290971759
Merge pull request #1650 from davidhewitt/pymodule-name
pymodule: accept `#[pyo3(name = "...")]` option
2021-06-06 11:11:10 +01:00
messense abd258803e
Merge pull request #1666 from davidhewitt/bench-new-containers
benches: add benchmarks for container creation
2021-06-06 17:58:58 +08:00
Georg Brandl f9a3da3e40
Merge pull request #1668 from PyO3/pylist_fix 2021-06-06 10:52:23 +02:00
Georg Brandl 98461a2ef6 PyList tests: simplify construction 2021-06-06 10:28:15 +02:00
Georg Brandl cb6dedbe62 PyList: fix segfault on get_item with negative indices
See #1667.
2021-06-06 10:19:30 +02:00
David Hewitt 18e0aa17e0 pymodule: accept `#[pyo3(name = "...")]` option 2021-06-06 08:41:20 +01:00
David Hewitt 6b681143cc
Merge pull request #1664 from PyO3/pylist_opt
PyList: remove get_parked_item, use macros for speed on !abi3
2021-06-06 08:31:18 +01:00
David Hewitt d6437af4a5 benches: add benchmarks for container creation 2021-06-06 08:26:20 +01:00
Georg Brandl c57afeb332
Merge pull request #1661 from PyO3/optimize_forwarding
Optimize f(*args, **kwds) function argument "parsing"
2021-06-06 08:27:33 +02:00
Georg Brandl 3bebc19e2d PyList: remove get_parked_item, use macros for speed on !abi3 2021-06-06 07:54:38 +02:00
Georg Brandl bd6788b2fa Argument parsing: optimize the f(*args, **kwds) case.
Use the VARARGS calling convention and just pass through the two objects.
2021-06-06 07:48:38 +02:00
Georg Brandl 4d2c173dbe
Merge pull request #1660 from PyO3/method_defs 2021-06-06 07:47:21 +02:00
Georg Brandl 60862c308b Update changelog entry. 2021-06-06 07:08:23 +02:00
Georg Brandl c670c57ddb Refactor PyMethodDef creation too. 2021-06-06 07:07:48 +02:00
Georg Brandl a8d2649032 Refactor wrapper generation, and enable fastcall for static/class methods. 2021-06-06 07:07:46 +02:00
David Hewitt 4c6d46c86b
Merge pull request #1663 from davidhewitt/ci-3.10-dev
ci: use latest Python 3.10 beta
2021-06-05 19:42:05 +01:00
David Hewitt c342af7138 ci: use latest Python 3.10 beta 2021-06-05 18:58:52 +01:00
David Hewitt bd0aa2cdee
Merge pull request #1659 from davidhewitt/pyo3-pass-module
pyfunction: document `#[pyo3(pass_module)]`
2021-06-05 18:44:48 +01:00
David Hewitt 9b8b133905 pyfunction: document `#[pyo3(pass_module)]` 2021-06-05 17:36:50 +01:00
David Hewitt 51fbf61717
Merge pull request #1658 from davidhewitt/pyo3-text-signature
text_signature: move to `#[pyo3(text_signature = "...")]`
2021-06-05 17:31:32 +01:00
David Hewitt cec4c2d2e9 text_signature: move to `#[pyo3(text_signature = "...")]` 2021-06-05 16:33:03 +01:00
mejrs d344c0a909 Merge branch 'PyO3:main' into num-dependency 2021-06-05 16:11:45 +02:00
mejrs 430fdb4be2 add num_bigint docs 2021-06-05 15:48:57 +02:00
David Hewitt a5810eaffa
Merge pull request #1619 from birkenfeld/fastcall
Implement METH_FASTCALL for pyfunctions.
2021-06-05 12:32:16 +01:00
Georg Brandl 3e8d003faf Implement METH_FASTCALL for pyfunctions and pymethods. 2021-06-05 12:57:22 +02:00
David Hewitt 97d6f15b32
Merge pull request #1626 from alonblade/cross-sysconfig
build.rs: if found more than one candidate, filter on arch
2021-06-05 09:29:00 +01:00
David Hewitt b3d3be600b
Merge pull request #1655 from davidhewitt/bench-tuple-new
bench_tuple: add benchmark for `PyTuple::new`
2021-06-05 09:27:40 +01:00
messense f49f4440b4
Merge pull request #1654 from messense/pathlib
Add support for extracting PathBuf from pathlib.Path
2021-06-05 15:49:30 +08:00