apohllo (Aleksander Pohl)
- Login: apohllo
- Email: apohllo@o2.pl
- Registered on: 12/21/2009
- Last sign in: 09/10/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
09/10/2014
-
02:30 PM Ruby Bug #10223: Stack level too deep in CSV when parsing long line
- I guess, that CSV has not much to do with that error. Probably the root cause is that `*mappings` inside
~~~
|category,*mappings|
~~~
is a very long array, which is (de)composed recursively. And this causes the Stack-level to deep ... -
02:21 PM Ruby Bug #10223 (Closed): Stack level too deep in CSV when parsing long line
- The following code:
~~~ruby
#!/usr/bin/env ruby
# encoding: utf-8
require 'bu...