Daniel Grunwald
b43fa55e01
Delete old 'rustobject' code
2016-03-12 19:09:10 +01:00
Daniel Grunwald
337a90c2fb
Reserve special method names
...
Some of these might work via the normal "instance method" functionality,
but we'll need testcases to be sure.
2016-03-12 19:08:51 +01:00
Daniel Grunwald
0bd9e3ebd2
Adjust extension test cases.
2016-03-12 18:14:21 +01:00
Daniel Grunwald
cc81a01077
py_class!: add support for instance methods
2016-03-12 17:58:50 +01:00
Daniel Grunwald
ab83b4f4a1
#14 ; Convert Rust panic to Python SystemError
2016-03-12 01:31:06 +01:00
Daniel Grunwald
309182cfe8
py_class!: Add support for "def __new__(cls)".
2016-03-12 00:06:39 +01:00
Daniel Grunwald
547879ef0f
Remove rustobject (PyRustObject, TypeBuilder).
...
Add new py_class!() macro that generates a static type.
2016-03-09 01:07:50 +01:00
Daniel Grunwald
9b278ba56b
Implement second form of py_fn!() (inline function definition)
2016-03-07 23:48:44 +01:00
Daniel Grunwald
3af6e17841
WIP: big macro refactoring
...
* Introduce py_argparse_parse_plist!() to allow a more flexible
param list syntax.
* py_fn!() syntax changed
* Remove py_method!() / py_class_method!() macros.
These are of limited use when building dynamic types,
and not useful for py_class!() static types.
2016-03-07 23:22:44 +01:00
Daniel Grunwald
be682d848f
WIP: generalize py_argparse!() macro
2016-03-06 13:33:57 +01:00
Daniel Grunwald
162e20d9e4
Fix build with rust-stable: we can't mark functions as public if we
...
nest the impl block in fn init().
2016-03-06 11:02:48 +01:00
Daniel Grunwald
96ee652737
TypeBuilder: take &mut self instead of by-value self
...
py_class!() now can be used to define simple types.
2016-03-06 10:29:28 +01:00
Daniel Grunwald
061e46bde8
Rename PyRustTypeBuilder -> TypeBuilder
2016-03-06 06:33:16 +01:00
Daniel Grunwald
acc5712536
Don't flatten the rustobject module + started implementing the py_class!() macro.
2016-03-06 06:29:43 +01:00
Daniel Grunwald
d705620502
Add support for Rust stable.
...
All functions that depend on PyObject having the same memory layout
as *mut ffi::PyObject should now be hidden behind #[cfg(feature="nightly")].
2016-03-06 01:08:40 +01:00
Daniel Grunwald
ad7f43efc7
Remove #![feature(optin_builtin_traits)] usage
2016-03-06 00:22:16 +01:00
Daniel Grunwald
7c90651157
Make use of nightly const_fn + shared features optional.
2016-03-06 00:03:17 +01:00
Daniel Grunwald
53353d374b
Remove dependency on interpolate_idents.
...
We now use the generic <DUMMY> hack to avoid duplicate extern "C" symbols.
See rust-lang/rust#26201 .
py_module_initializer!() calls now need to manually concatenate the module
name with the prefixes "init" and "PyInit_".
2016-03-05 23:20:53 +01:00
Daniel Grunwald
a4f946096c
Add back accidentally removed #[macro_use]
2016-03-05 17:44:30 +01:00
Daniel Grunwald
067f262876
Some documentation updates
2016-03-05 17:41:04 +01:00
Daniel Grunwald
5223cf4730
Fix build
2016-03-05 15:57:48 +01:00
Daniel Grunwald
e5f77018f1
Allow using py_fn!() as argument to PyRustTypeBuilder::set_new()
2016-03-05 15:16:11 +01:00
Daniel Grunwald
d22fbb31ce
Refactor py_fn / py_method / py_class_method macros
2016-03-05 15:05:41 +01:00
Daniel Grunwald
c01a1e8306
Use std::ptr::Shared in PyObject to enable the null pointer optimization.
2016-03-05 02:01:03 +01:00
Daniel Grunwald
b617af7c5b
Add PyTypeBuilder::set_new().
2016-03-05 01:16:54 +01:00
Daniel Grunwald
249be0da3a
Use #[cfg] on expressions to avoid some code duplication
2016-03-05 00:13:38 +01:00
Daniel Grunwald
109c704ad7
Fix "reexport of private crate" warning.
2016-03-04 21:35:52 +01:00
Joshua Miller
7092bd4362
remove duplicate word in docstring
2016-01-28 21:13:39 -06:00
Daniel Grunwald
168a060f4b
Make PreparedString public.
2015-12-20 13:59:03 +01:00
Daniel Grunwald
c1682b68ac
Add some tests for py_fn!()
2015-11-07 16:52:20 +01:00
Daniel Grunwald
32086a0ef5
Add back PyIterator, PyListIterator etc.
2015-10-29 02:36:50 +01:00
Daniel Grunwald
0a270a0583
Put Python argument at beginning of argument list.
...
Closes #33 .
2015-10-26 23:52:18 +01:00
Daniel Grunwald
44611991c3
Remove 'p lifetime from PyObject ( #15 )
...
Since the `Python` token no longer is a part of `PyObject`,
lots of methods now require the token as additional argument.
This [breaking-change] breaks everything!
2015-10-25 17:55:29 +01:00
Daniel Grunwald
2b7d28f7fd
Fix build with python 2.7
2015-09-20 19:43:24 +02:00
Daniel Grunwald
5bab92cbcc
Add back PyTuple::as_slice()
2015-09-20 19:40:18 +02:00
Daniel Grunwald
080ca17621
Use concrete return types for str() and repr()
2015-09-20 19:39:59 +02:00
Daniel Grunwald
b21a23b304
In python 3, use PyUnicode_AsUTF8AndSize for extracting UTF-8 from unicode objects.
2015-09-20 16:21:00 +02:00
Daniel Grunwald
65395a11b1
Merge branch 'python-eval' of https://github.com/murarth/rust-cpython
2015-09-19 16:14:42 +02:00
Daniel Grunwald
d87a4596ef
Dict tests.
...
(squashed pull request #31 without PyMapping)
2015-09-18 21:47:10 +02:00
Daniel Grunwald
d00d59959a
PySequence: change some more return types to PyResult<'p, PyObject<'p>>
2015-09-13 19:37:49 +02:00
Ewan Higgs
65967c2401
Use err::error_on_minusone to clean the code up a bit.
2015-09-08 12:54:38 +02:00
Ewan Higgs
dbcdbedc59
Fix up get_item so it returns PyResult (w/o lifetime elision).
...
Make concat and repeate return PyObject. Also uncomment tests of concat and
repeat.
2015-09-07 23:03:22 +02:00
Ewan Higgs
809e9ab227
Use signed size to allow negative indexing. Add more tests.
2015-09-04 00:52:16 +02:00
Ewan Higgs
f90d427454
Tidy up docs, make length and size the same. Test del_item.
2015-08-26 21:45:46 +02:00
Ewan Higgs
a63aa43536
Use cast_into instead of from_object. More PySequence tests.
2015-08-26 21:13:13 +02:00
Ewan Higgs
636cfee28d
Add tests for sequence. Make list and tuple use private PyObject again.
...
Add from_object that converts from PyObject into PyList and PyTuple.
Maybe it should be a macro as part of the newtype thing?
2015-08-26 21:13:13 +02:00
Ewan Higgs
ff69760b99
Make ctors public for various object types.
2015-08-26 21:13:13 +02:00
Daniel Grunwald
160b23eff0
Remove unnecessary PyList -> PyObject -> PyList roundtrip
2015-08-26 20:19:58 +02:00
Ewan Higgs
173a6147f4
Add tests for list.rs. Still missing tests for extract.
2015-08-26 15:49:43 +02:00
Daniel Grunwald
fa5c866cd6
Fix compiler error
...
Closes #27
2015-08-21 21:27:11 +02:00