This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
0
You've already forked circuitpython
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
5e9810396f
circuitpython
/
tests
/
micropython
/
viper_misc.py.exp
14 lines
63 B
Plaintext
Raw
Normal View
History
Unescape
Escape
py: Allow viper to have type annotations. Viper functions can now be annotated with the type of their arguments and return value. Eg: @micropython.viper def f(x:int) -> int: return x + 1
2014-08-15 11:45:41 -04:00
6
3
py: Fix typing of viper locals; allow default types in annotation.
2014-08-15 17:39:08 -04:00
7
20
49994955
py: Viper can now store to global.
2014-08-15 18:47:59 -04:00
1 1
py: Viper can call functions with native types, and raise exceptions.
2014-08-16 17:06:11 -04:00
1 3
(1, 3)
[1, 3]
[1, 3]
py: Remove unused and unneeded SystemError exception. It's purpose is for internal errors that are not catastrophic (ie not as bad as RuntimeError). Since we don't use it, we don't need it.
2014-10-22 14:42:55 -04:00
OSError(1,)
py: Fix bug where GC collected native/viper/asm function data. Because (for Thumb) a function pointer has the LSB set, pointers to dynamic functions in RAM (eg native, viper or asm functions) were not being traced by the GC. This patch is a comprehensive fix for this. Addresses issue #820.
2014-08-24 11:28:17 -04:00
1
1
Reference in New Issue
Copy Permalink