Kenta Murata

Results 124 comments of Kenta Murata

I'm sorry I couldn't perform to re-review #129 soon. I'll do it as soon as possible after releasing Ruby 3.1 and the next version of bigdecimal.

I've confirmed that Python's math module cannot be imported after hpricot. With hpricot: ``` $ irb irb(main):001:0> require 'pycall' => true irb(main):002:0> math = PyCall.import_module('math') => irb(main):003:0> ``` With hpricot:...

Oh, I 'm surprised that hpricot is still being used in production. As three reports came, so I will seriously address this issue. But, unfortunately, perhaps until I finish RubyKaigi...

@archonic Could you try with pycall 1.0.3?

@buncis I'm sorry for my response to being late. PyCall's README already has [the section that describes tips for deploying on Heroku](https://github.com/mrkn/pycall.rb#deploying-on-heroku). This section was added by the pull-request https://github.com/mrkn/pycall.rb/pull/134...

@buncis I don't want to open the wiki because the wiki is too difficult to keep managed. Opening the discussion can be acceptable, but I believe README is appropriate for...

@buncis Thanks. I understand. It should be described in README and I want to do so. Could you please make a pull request to update the Heroku section in README?

@buncis No problem. Thank you very much!

One candidate is `PyCall.enum(obj)` to get an Enumerator object. This is a concept implementation: ```ruby module PyCall module_function def enum(obj) gen = obj.__iter__ Enumerator.new do |y| begin yield gen.__next__ while...

@allomov Could you please make a pull-request?