floehopper (James Mead)
- Login: floehopper
- Email: james@floehopper.org
- Registered on: 01/26/2014
- Last sign in: 10/07/2024
Issues
open | closed | Total | |
---|---|---|---|
Assigned issues | 0 | 0 | 0 |
Reported issues | 0 | 3 | 3 |
Like
Activity
03/18/2017
- 12:50 PM Ruby master Bug #13276: Dir.glob returns empty array when OS has no more file handles (expected exception)
- Bump?
03/03/2017
- 06:32 PM Ruby master Bug #13276 (Closed): Dir.glob returns empty array when OS has no more file handles (expected exception)
- The following terminal session demonstrates how `Dir.glob` returns an empty array when the OS has run out of file han...
11/01/2016
- 08:29 PM Ruby master Bug #12832: Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
- @George: Thanks for explaining. Makes sense.
- 12:33 PM Ruby master Bug #12832: Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
- @nobu: Is it possible there is a separate problem with the code such that interrupt signals are incorrectly being ign...
- 09:34 AM Ruby master Bug #12832: Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
- @nobu: Thank you for fixing this. Is it expected that a bug like this would cause the interpreter not to accept inter...
10/27/2016
- 02:18 PM Ruby master Bug #12876 (Closed): Calling new hangs Ruby when class prepends an empty module and makes initialize method public
- ```ruby
module Foo
end
class Bar
prepend Foo
public :initialize
end
p Bar.new # => hangs
```
## ...
10/12/2016
- 02:22 PM Ruby master Bug #12832: Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
- In case it helps, it seems as if Ruby v2.3 is "more" broken than earlier versions. If I remove the `Bar.method(:foo)`...
10/11/2016
- 06:45 PM Ruby master Bug #12832 (Closed): Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
- ~~~ ruby
module Foo
private
def foo
"foo"
end
end
class Bar
extend Foo
class << self
...
Also available in: Atom