-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Floating point type conversion #266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Can you please remove the extra commits from this? The only one that needs to be here is de877ac. If you need instructions on how to do that, let me know. |
Actually yeah, how do you exactly get rid of the extra commits? I was fiddling around with the pull request interface and the branch you merged but wasn't able to get it down to just that one commit. |
So take a look at the output of the following:
It might look like
So you'll want to then do
Now what you want to do is In general, you always want to checkout master and do |
Neat, thanks for all the help! I will follow those guidelines the next time I make a pull request. |
Floating point type conversion
Thanks @luhkevin for fixing up your PR and this bug. =D |
Can you bump the version (0.4.1 is good) and update the changelog too? On Wed, Nov 25, 2015 at 8:07 AM, Ian Cordasco notifications@github.com
|
Deployed |
Cool! |
Floating point type conversion
Apologies, but my last pull request, which was merged in 4763d47, was merged with a bug.
Since the int constraint is removed to allow for floats, the delay parameter comes in as unicode.
I'm not exactly sure how the unicode is compared with the integer 10, but this obviously creates undesirable delays -- 10 ends up being smaller than whatever number the min function interprets the unicode as.
I've run this with delay between 1 - 10 and 0 - 1 and they all return 10.
Sorry again for the trouble. Hopefully there won't be any more.