Skip to content
This repository was archived by the owner on May 31, 2020. It is now read-only.

Builtins and some Float operators #113

Merged
merged 31 commits into from
Apr 5, 2016
Merged

Conversation

cflee
Copy link
Member

@cflee cflee commented Apr 3, 2016

I better send this PR before it gets any bigger.

  • Builtins, either implemented or improved:
    • any(), bin(), int(), chr(), float(), hex(), bin(), oct()
    • divmod(), pow()
  • Float operators: __floordiv__(), __mod__() (to implement divmod())
  • Added a BuiltinTwoargFunctionTestCase to try all possible pairs of divmod() parameters, as it was taking too long to slowly write all the permutations and search out the edge cases. This shook out ~3 bugs in the implementation.
  • Minor fix to utils.py's JAVA_STACK regex that was eating trailing spaces in exception messages

Refs #76.

cflee added 30 commits March 28, 2016 18:09
- Add the default AttributeError to org.python.types.Super and
org.python.types.Object.
- This was not erroring on javac for jdk1.8.
- Add the name to Method annotation to make it be callable as float()
instead of float_cast()
- Add implementation in Bool and Str
- This was breaking tests for exception messages that end with one or
more trailing spaces, as they accidentally get 'stripped' off as part of
the \s special sequence which includes newlines and spaces.
- Instead, use the MULTILINE mode, start the regex with ^ to match each
newline, and then include the EOL at the back with `\r?\n` to ensure
that it is not left behind in the exception string after replacing.
- Quote the value with single quotes only when it's non-empty.
- Mark test as passing.
- Largely copied from Int, with some minor modifications.
- Mark passing tests as implemented.
- Uses the newly implemented floordiv and mod
- Add tests
- Replace the "unsupported operand type(s) for //" message with
"unsupported operand type(s) for divmod()"
- Mark tests as passing.
- Mark tests as passing.
- Wire up builtin org.Python.pow() with args and third argument checking
- Implement for Float and Bool (latter delegating to Int)
- Test builtin functions more easily and thoroughly with this test case
- Mark tests as passing.
- This is much more thorough than the manually written tests previously
in DivmodTests.
@freakboy3742 freakboy3742 merged commit 64a0b04 into beeware:master Apr 5, 2016
@freakboy3742
Copy link
Member

Fantastic work - thanks!

@cflee cflee deleted the builtin-tests-2 branch April 6, 2016 05:07
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants