Joey
|
df76ffe116
|
Replace most relative imports with 2018-style crate
|
2019-02-20 08:50:53 -08:00 |
|
Windel Bouwman
|
e5af4caecf
|
Merge pull request #424 from janczer/add_object_lt_le_gt_ge
Add object.{__lt__, __le__, __gt__, __gt__}
|
2019-02-12 19:21:07 +01:00 |
|
janczer
|
0887b55da8
|
Add object.{__lt__, __le__, __gt__, __gt__}
|
2019-02-12 15:32:07 +01:00 |
|
ben
|
d14aeef2e5
|
Handle passing no format_spec into format()
|
2019-02-12 20:24:57 +13:00 |
|
ben
|
5c12367f59
|
Merge branch 'master' into object_format
|
2019-02-12 20:09:27 +13:00 |
|
ben
|
93e5634d39
|
Fixes #328, add object.__format__
|
2019-02-12 20:06:50 +13:00 |
|
Joey Hain
|
057a22529e
|
Move delegation of __ne__ to __eq__ out of objobject
|
2019-02-10 15:46:12 -08:00 |
|
Joey Hain
|
a510aed86a
|
Tests and fix objobject ne impl
|
2019-02-10 10:13:30 -08:00 |
|
Windel Bouwman
|
07fd61f55f
|
Change instance and class to simplified dict type. (#379)
* Change instance and class to simplified dict type.
* Fix formatting.
|
2019-02-08 14:18:14 +00:00 |
|
Windel Bouwman
|
040a377d06
|
Merge branch 'master' into fix_redundant_field_names
|
2019-02-06 08:14:14 +01:00 |
|
veera venky
|
3de17b9083
|
Added __doc__ atrribute for object
|
2019-02-06 08:35:57 +05:30 |
|
Windel Bouwman
|
aaf0eab530
|
Merge pull request #342 from ZapAnton/fix_collapsible_if
Fixed the 'collapsible_if' clippy warnings
|
2019-02-05 23:34:29 +01:00 |
|
ZapAnton
|
fb9fa27555
|
Fixed the 'redundant_field_names' clippy warnings
This replaces all the occurrences of the Struct {field : field}
with the Struct {field}.
Relevant clippy warning: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
|
2019-02-05 21:56:16 +03:00 |
|
ZapAnton
|
b0cbb23b43
|
Fixed the 'collapsible_if' clippy warnings
Relevant clippy warning: https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if
|
2019-02-05 21:49:07 +03:00 |
|
ZapAnton
|
0d3b218237
|
Fixed the 'toplevel_ref_arg' clippy warning
This replaces all the occurrences of the
'let ref var = another_var' with the
'let var = &another_var'
Relevant clippy warning: https://rust-lang.github.io/rust-clippy/master/index.html#toplevel_ref_arg
|
2019-02-05 21:45:56 +03:00 |
|
Windel Bouwman
|
892493e464
|
Rename PyObjectKind into PyObjectPayload
|
2019-01-30 18:06:27 +01:00 |
|
coolreader18
|
80573b0544
|
Format PyObject's correctly and nicely
|
2018-12-26 18:09:49 -06:00 |
|
Windel Bouwman
|
4095e0cad7
|
Modify location of set_attr so that we are able to create str python objects for the dictionary.
|
2018-12-12 22:06:19 +01:00 |
|
Adam Kelly
|
5c7b0da2f1
|
Magic methods aren't looked up via getattribute.
|
2018-11-01 19:57:13 +00:00 |
|
Adam Kelly
|
3e07c19ec4
|
Implement object.__getattribute__.
|
2018-11-01 19:57:13 +00:00 |
|
Windel Bouwman
|
104bc56bc1
|
Add hash builtin function.
|
2018-10-21 23:33:06 +02:00 |
|
Windel Bouwman
|
ae768c7fe6
|
Add parsing for star arg parameters.
|
2018-10-20 11:47:23 +02:00 |
|
Windel Bouwman
|
133d72fcb1
|
Add tokenize module. Change call_method to take a reference to a PyObjectRef. Add new method to list class.
|
2018-10-14 15:21:48 +02:00 |
|
Windel Bouwman
|
2d7b0e0d4b
|
Moved objbool into obj folder
|
2018-09-29 09:38:07 +02:00 |
|
Adam Kelly
|
c8d8528bff
|
object.__str__ delegates to __repr__.
|
2018-09-02 12:09:57 +01:00 |
|
Adam Kelly
|
76344e5023
|
Add object.__init__
|
2018-09-02 10:57:30 +01:00 |
|
Adam Kelly
|
dd24727c0e
|
Use __eq__ methods inequality too.
|
2018-09-01 22:29:20 +01:00 |
|
Adam Kelly
|
8d8816ce04
|
Merge branch 'master' into equality
|
2018-09-01 20:46:22 +01:00 |
|
Windel Bouwman
|
40cf7f4579
|
Move more objects to obj folder
|
2018-09-01 10:00:55 +02:00 |
|