[#65451] [ruby-trunk - Feature #10333] [PATCH 3/1] optimize: "yoda literal" == string — ko1@...
Issue #10333 has been updated by Koichi Sasada.
ko1@atdot.net wrote:
Eric Wong <normalperson@yhbt.net> wrote:
Eric Wong <normalperson@yhbt.net> wrote:
On 2014/10/09 11:04, Eric Wong wrote:
SASADA Koichi <ko1@atdot.net> wrote:
[#65453] [ruby-trunk - Feature #10328] [PATCH] make OPT_SUPPORT_JOKE a proper VM option — ko1@...
Issue #10328 has been updated by Koichi Sasada.
[#65559] is there a name for this? — Xavier Noria <fxn@...>
When describing stuff about constants (working in their guide), you often
On 2014/10/09 20:41, Xavier Noria wrote:
On Thu, Oct 9, 2014 at 1:59 PM, Nobuyoshi Nakada <nobu@ruby-lang.org> wrote:
[#65566] [ruby-trunk - Feature #10351] [Open] [PATCH] prevent CVE-2014-6277 — shyouhei@...
Issue #10351 has been reported by Shyouhei Urabe.
[#65741] Re: [ruby-cvs:55121] normal:r47971 (trunk): test/ruby/test_rubyoptions.rb: fix race — Nobuyoshi Nakada <nobu@...>
On 2014/10/16 10:10, normal@ruby-lang.org wrote:
Nobuyoshi Nakada <nobu@ruby-lang.org> wrote:
2014-10-16 12:48 GMT+09:00 Eric Wong <normalperson@yhbt.net>:
[#65753] [ruby-trunk - Feature #10333] [PATCH 3/1] optimize: "yoda literal" == string — ko1@...
Issue #10333 has been updated by Koichi Sasada.
[#65818] [ruby-trunk - Feature #10351] [PATCH] prevent CVE-2014-6277 — shyouhei@...
Issue #10351 has been updated by Shyouhei Urabe.
[ruby-core:65986] [ruby-trunk - Bug #10239] [Assigned] Regexp.quote() and default encoding
Issue #10239 has been updated by Tomoyuki Chikanaga.
Category set to doc
Status changed from Open to Assigned
Assignee set to Zachary Scott
Target version set to current: 2.2.0
I think this is intended behavior.
----------------------------------------
Bug #10239: Regexp.quote() and default encoding
https://bugs.ruby-lang.org/issues/10239#change-49719
* Author: Robert A. Heiler
* Status: Assigned
* Priority: Low
* Assignee: Zachary Scott
* Category: doc
* Target version: current: 2.2.0
* ruby -v: ruby 2.1.2p95 (2014-05-08 revision 45877) [x86_64-linux]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN
----------------------------------------
Hello,
I am not sure if this is a bug, or unexpected behaviour (for me).
I will simply report it, I am sure you guys know how and if to
handle this anyway.
I believe it should be documented at least in the official documentation
if it is not a bug.
The situation is that I have several strings with mixed encodings.
Some will have automatically UTF8, some US-ASCII, and yet some
others will have ASCII-8BIT.
I noticed that Regexp.quote() change the encoding of the string
in question in the same project unfortunately, and no way to
change that (as some of that gets set from the outside world
to me).
Here is proof for Regexp.quote() changing the encoding, where
x is my test variable - a string:
x = "abc"; x.encoding # => #<Encoding:US-ASCII>
x.encode!('ASCII-8BIT'); x.encoding # => #<Encoding:ASCII-8BIT>
Ok, all works fine, it defaulted to US-ASCII but is not
ASCII-8BIT.
Next:
test = Regexp.quote(x); test.encoding # => #<Encoding:US-ASCII>
Suddenly the new string that is returned has another encoding.
I looked at the documentation:
http://www.ruby-doc.org/core-2.1.2/Regexp.html#method-c-quote
But there is no mention that this method would return a new
String object with a different encoding.
I would have expected it to not change the encoding of the
argument-string object there.
Perhaps the documentation could mention that it will ignore
the original encoding of the string given?
--
https://bugs.ruby-lang.org/