py: Implement divmod, % and proper // for floating point.

Tested and working on unix and pyboard.
This commit is contained in:
Damien George
2014-09-13 18:43:09 +01:00
parent 5c6783496d
commit 8594ce2280
8 changed files with 150 additions and 18 deletions

View File

@@ -117,7 +117,6 @@ float acoshf(float x) { return 0.0; }
float asinhf(float x) { return 0.0; }
float atanhf(float x) { return 0.0; }
float tanf(float x) { return 0.0; }
float fmodf(float x, float y) { return 0.0; }
float tgammaf(float x) { return 0.0; }
float lgammaf(float x) { return 0.0; }
float erff(float x) { return 0.0; }