crazymykl (Mike MacDonald)
- Login: crazymykl
- Email: crazymykl@gmail.com
- Registered on: 02/21/2013
- Last sign in: 12/20/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
07/19/2020
-
05:32 PM Ruby Revision d57bc03b (git): [ruby/csv] Do not loop forever when skip_lines regexp matches zero length with anchors (#110)
- * Do not loop forever when skip_lines regexp matches zero length with anchors
* Remove needless white spaces
* Add missing eos check in skip_needless_lines
* Simplify test
https://github.com/ruby/csv/commit/3b15d4a3e8
11/17/2017
-
08:20 PM Ruby Bug #13586: Ruby hangs when accessing array which is modified in instance_eval after Coverage.start
- This also happens on 2.4.2p198, but not 2.5.0-preview1.
12/27/2014
-
03:42 AM Ruby Bug #10654: Nil -> Rational Inconsistency
- Current behavior is consistent with other number types:
```
Integer(nil) # => TypeError
nil.to_i # => 0
```
Calling the global function raises if the conversion is not well defined, whereas the explicit conversion method instead p...