surahman commented on PR #3819:
URL: https://github.com/apache/incubator-heron/pull/3819#issuecomment-1101831545

   > I ask because there were various issues with the intermingling of the 
types. I was hoping we could keep it consistent, but recognize there might be 
use cases I didn't account for with the prior testing.
   
   I approved because Python typing will, rather annoyingly, allow you to 
achieve what follows. I agree with the need for consistency.
   
   ```python
   float_Val: float = 9.19
   print(float_Val)
   
   str_Val: int = float_Val
   print(str_Val, type(str_Val))
   
   str_Val = 919
   print(str_Val, type(str_Val))
   ``


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to