Commit Graph

702 Commits

Author SHA1 Message Date
Shing Lyu
51271e5000 Added link to documentation in README 2018-11-24 10:37:19 +01:00
Windel Bouwman
a8fb2f3754 Merge pull request #204 from RustPython/travis-doc
Auto build and deploy documentation to website repo
2018-11-23 18:32:44 +01:00
Shing Lyu
023e6119c4 Auto build and deploy documentation to website repo 2018-11-23 11:51:39 +01:00
Windel Bouwman
083eb977ad Merge pull request #202 from RustPython/cleanup
Removed unused wasm/src/main.rs file
2018-11-22 21:37:32 +01:00
Shing Lyu
c1ab263258 Removed unused wasm/src/main.rs file 2018-11-20 21:50:17 +01:00
Windel Bouwman
be462afaa4 Add method to list and tuple class. 2018-11-17 12:31:24 +01:00
Windel Bouwman
a17fb3f4d0 Merge pull request #197 from BojanKogoj/bojan/vm-call_or_unsupported
WIP: Added call_or_unsupported to vm.rs
2018-11-17 09:07:19 +01:00
Shing Lyu
cd3429ce4d Merge pull request #193 from RustPython/readme-typo
Fixed wasm-bindgen typo in README
2018-11-16 14:44:00 +01:00
Bojan
0da1f73777 Removed empty space 2018-11-16 07:49:12 +01:00
Bojan
d972b07195 Fixed method comment 2018-11-15 23:47:11 +01:00
Bojan
f9860d083e Moved and to use new method 2018-11-15 23:42:17 +01:00
Bojan
15c6328ecd Moved sub to use new method 2018-11-15 23:42:03 +01:00
Bojan
05d2faa227 Added call_or_unsupported to vm.rs
This is to prevent code duplication
2018-11-15 23:37:46 +01:00
Shing Lyu
bbdef3d8c8 Merge pull request #194 from RustPython/wasm-doc
Updated the wasm installation instruction
2018-11-15 16:57:07 +01:00
Shing Lyu
1a0677ab44 Updated the wasm installation instruction 2018-11-15 00:25:22 +01:00
Shing Lyu
2939e53717 Fixed wasm typos in README 2018-11-14 23:43:44 +01:00
Windel Bouwman
96c1c5a328 Use rusts internal hash algorithm. 2018-11-12 21:24:53 +01:00
Windel Bouwman
58b905f4df Merge pull request #182 from rmliddle/wasm-steps
Exposes API for running Python via JS
2018-11-12 20:30:52 +01:00
Windel Bouwman
49f855219a Implement sys.getrefcount, sys.ps1, sys.ps2 and sys.getsizeof 2018-11-11 20:54:30 +01:00
Adam Kelly
9cba8d2c3a Avoid crash debug logging circular dictionaries. 2018-11-11 18:32:27 +00:00
Adam Kelly
84ef6e3053 Add Frame.f_code. 2018-11-11 18:12:30 +00:00
Adam Kelly
a1b7c61fcf Implement sys._getframe() to the point where we can use it to get locals. 2018-11-11 17:54:30 +00:00
Windel Bouwman
f6d7e2fc7a Update readme with badges. 2018-11-08 19:49:56 +01:00
Windel Bouwman
9ba9ca1cf6 Merge pull request #183 from BojanKogoj/bojan/objobject-__and__-default
WIP: Added default __and__
2018-11-08 18:42:05 +01:00
Bojan
ccd1534f69 Merge branch 'master' into bojan/objobject-__and__-default 2018-11-07 22:34:44 +01:00
Bojan
e7cd83240c Changed to proper implementation in vm 2018-11-07 22:32:20 +01:00
Windel Bouwman
c4cbedae2f Extend min builtin function to support key and default. 2018-11-07 19:25:18 +01:00
Windel Bouwman
99af466a88 Move max function test cases to snippet dir. Implement key and default argument on max function. 2018-11-07 17:26:18 +01:00
Windel Bouwman
4acea45f78 Add code and frame python objects. 2018-11-07 15:24:18 +01:00
Windel Bouwman
df0400dffb Add filter and zip builtins 2018-11-07 09:41:16 +01:00
Windel Bouwman
3c4aaa0d3c Merge pull request #188 from RustPython/sub
Implement __sub__/__rsub__.
2018-11-06 22:33:40 +01:00
Windel Bouwman
bacaef0ec5 Make example work for sub/rsub. Still work in progress. 2018-11-06 22:13:49 +01:00
Windel Bouwman
c69b43d13b Add frozenset class, callable function and enumerate function. 2018-11-06 21:42:42 +01:00
Windel Bouwman
ce5bb72ed0 Minor delta on super class. 2018-11-05 20:46:32 +01:00
Windel Bouwman
e3000e2f25 Add super object type skeleton. 2018-11-04 23:10:02 +01:00
Windel Bouwman
0045d74eed Merge pull request #189 from RustPython/getattr_bugfixes
type.__getattribute__ should be bound to type!
2018-11-04 22:50:27 +01:00
Adam Kelly
a2ce4c8045 Add special case handling for __get__(None, NoneType) 2018-11-04 20:58:21 +00:00
Adam Kelly
7bf8378a18 type.__getattribute__ should be bound to type! 2018-11-04 18:43:39 +00:00
Windel Bouwman
a389b55ec1 Initial version of property class. 2018-11-04 17:14:07 +01:00
Windel Bouwman
6746784db8 Add classmethod and staticmethod classes. 2018-11-04 13:27:50 +01:00
Windel Bouwman
5ffb20b26e Add builtin oct function. Add weakref.ref class. 2018-11-04 12:07:53 +01:00
Adam Kelly
60f29149ef Add test for class with sub and rsub. 2018-11-04 10:17:07 +00:00
Adam Kelly
0f0de02827 Implement __sub__/__rsub__. 2018-11-04 10:07:51 +00:00
Windel Bouwman
8d598740d9 Add int __pos__ method 2018-11-04 09:34:54 +01:00
Windel Bouwman
9364902768 Add tilde unary operator in syntax. 2018-11-04 09:30:13 +01:00
Windel Bouwman
17fc5a2345 Implemented hexadecimal, octal and binary literals. Also use bigint in the lexer to store big integer literals. 2018-11-04 09:00:44 +01:00
Windel Bouwman
0a724093d0 Merge pull request #187 from RustPython/oo_fixes
Oo fixes
2018-11-04 08:38:20 +01:00
Adam Kelly
ff4e8da07e Merge branch 'master' into newinit 2018-11-03 22:42:40 +00:00
Adam Kelly
ba8990ed17 Fix check that __init__ must return None. 2018-11-03 18:09:51 +00:00
Adam Kelly
bcdb2089d5 Add logic for inheriting metaclass from bases. 2018-11-03 18:09:32 +00:00