riskwa (riskwa anon)
- Login: riskwa
- Registered on: 03/25/2012
- Last sign in: 12/27/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 4 | 4 |
Activity
12/27/2020
-
01:41 PM Ruby Bug #17482 (Closed): Ractor.receive doesnt accept Ctrl+C under some condition
- When I run this script, Ctrl+C doesn't work.
Waiting forever on #4 is fine, but I think Ctrl+C should work.
``` ruby
r = Ractor.new() {
# sleep 1 #1
File.open(__FILE__){ } #2
}
# sleep 1 ...
04/23/2012
-
12:48 AM Ruby Bug #6342 (Closed): rubydb(debugger interface on emacs) doesnt work with multi files
- in rubydb(debugger interface on emacs) we can set breakpoint by C-x SPC,
but it only refers to line number, not to file name.
could you update it to handle file name?
* I just modified ruby-source/misc/rubydb3x.el to fix:
< (gud-d...
04/09/2012
-
12:52 AM Ruby Bug #6271: textmode File#read on CRLF
- I tested the code above in some environments.
(a) ruby 1.9.3p125 (2012-02-16 revision 34643) [i386-cygwin] : works fine
(b) ruby 2.0.0dev (2012-04-08 trunk 35259) [i386-cygwin] : works fine
(c) ruby 1.9.3p125 (2012-02-16) [i386-mingw3...
04/08/2012
-
06:54 PM Ruby Bug #6271 (Closed): textmode File#read on CRLF
- I'm not sure this is bug,
when "File#read(X)" for textmode finishes inside of CRLF, stream keeps CR unread against my intuition.
The following code prints "\r" forever for CRLF.
File.open(__FILE__, "r") do |f|
until f.eof?
...
03/25/2012
-
02:58 AM Ruby Feature #6198 (Rejected): public/protected/private with attr_*
- I'd like to set visibility like this:
class X
protected attr_accessor :x, :y
end
attached patch(for 1.9.3-p125) is sample implementation (it seems to pass test-all)
- make attr_* to return array of method-symbols which a...