* ext/openssl/lib/openssl/x509.rb
(OpenSSL::X509::Name::RFC2253DN::StringChar): get rid of a false positive assertion in ripper's test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48521 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a23e9c7f13
commit
c1bad60408
@ -1,3 +1,9 @@
|
|||||||
|
Fri Nov 21 00:36:09 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/openssl/lib/openssl/x509.rb
|
||||||
|
(OpenSSL::X509::Name::RFC2253DN::StringChar): get rid of a false
|
||||||
|
positive assertion in ripper's test.
|
||||||
|
|
||||||
Fri Nov 21 00:29:51 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
Fri Nov 21 00:29:51 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* lib/net/imap.rb (Net::IMAP::ResponseParser::BEG_REGEXP): no need to
|
* lib/net/imap.rb (Net::IMAP::ResponseParser::BEG_REGEXP): no need to
|
||||||
|
@ -70,7 +70,7 @@ module OpenSSL
|
|||||||
HexPair = /#{HexChar}#{HexChar}/
|
HexPair = /#{HexChar}#{HexChar}/
|
||||||
HexString = /#{HexPair}+/
|
HexString = /#{HexPair}+/
|
||||||
Pair = /\\(?:[#{Special}]|\\|"|#{HexPair})/
|
Pair = /\\(?:[#{Special}]|\\|"|#{HexPair})/
|
||||||
StringChar = /[^#{Special}\\"]/
|
StringChar = /[^\\"#{Special}]/
|
||||||
QuoteChar = /[^\\"]/
|
QuoteChar = /[^\\"]/
|
||||||
AttributeType = /[a-zA-Z][0-9a-zA-Z]*|[0-9]+(?:\.[0-9]+)*/
|
AttributeType = /[a-zA-Z][0-9a-zA-Z]*|[0-9]+(?:\.[0-9]+)*/
|
||||||
AttributeValue = /
|
AttributeValue = /
|
||||||
|
Loading…
x
Reference in New Issue
Block a user