shishir127 (Shishir Joshi)
- Login: shishir127
- Email: shishir127@gmail.com
- Registered on: 04/25/2015
- Last sign in: 09/29/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
09/29/2015
-
12:50 PM Ruby Bug #11450: HTTPHeader.content_range throws error on non-byte units
- Raised a [PR](https://github.com/ruby/ruby/pull/1018)
09/24/2015
-
04:49 AM Ruby Feature #11523: optparse short options will match complete options
- Try executing this script. The only difference between the previous script and this one is that instead of returning the `options` variable, `opt_parser.parse!(args)` is being returned from the method. I did not get the error with this s...
07/01/2015
-
12:27 PM Ruby Bug #11281: Unexpected behaviour in HTTP header processing
- Nobuyoshi Nakada wrote:
> Shishir Joshi wrote:
> ...
Yes. Nil header doesn't make sense and should be skipped. But I'm not really convinced that this is a good case to raise an exception. Your thoughts?
06/29/2015
-
04:34 PM Ruby Bug #11281: Unexpected behaviour in HTTP header processing
- I think if the user wants to send a blank header, then the user should do that explicitly like
~~~ruby
Net::HTTP::Get.new('http://any.url', {'header' => ""})
~~~
Converting a `nil` value to a blank string is not so obvious behavi...
05/09/2015
-
07:02 AM Ruby Bug #11088: On Exception too expensive inspect is called on recursive object graph with 3000 elements in it, swallows memory and ultimately doesn't deliver exception
- Hi Jurgen,
I executed bug_hunt.rb and I was able to reproduce this issue. But when I tried a simple test (attached in 11088_test.rb) I did not see this bug. Can you tell us how you generated the ruby_object.dump? Do you have code for ...
04/29/2015
-
04:59 PM Ruby Bug #11059: When saving a hash to YAML or JSON the default value isn't stored
- JSON is based on JavaScript and the JavaScript default value for hashes can't be changed. The YAML spec says
These primitives were chosen because they are both powerful and familiar: the sequence corresponds to a Perl array and a Pyth...