< :前の番号
^ :番号順リスト
> :次の番号
P :前の記事(スレッド移動)
N :次の記事(スレッド移動)
|<:前のスレッド
>|:次のスレッド
^ :返事先
_:自分への返事
>:同じ返事先を持つ記事(前)
<:同じ返事先を持つ記事(後)
---:分割してスレッド表示、再表示
| :分割して(縦)スレッド表示、再表示
~ :スレッドのフレーム消去
.:インデックス
..:インデックスのインデックス
Issue #16768 has been updated by jeremyevans0 (Jeremy Evans).
Status changed from Open to Rejected
This seems more like a bugfix than a regression to me, even if the change was unintended. Is there a reason you would want the previous behavior? In any case, issues in the date library should be filed upstream: https://github.com/ruby/date/issues
----------------------------------------
Bug #16768: "\n" started not to work as a delimiter in time zone names for Date._strptime since 2.7.0
https://bugs.ruby-lang.org/issues/16768#change-85039
* Author: dmikurube (Dai MIKURUBE)
* Status: Rejected
* Priority: Normal
* ruby -v: 2.7.0
* Backport: 2.5: UNKNOWN, 2.6: UNKNOWN, 2.7: UNKNOWN
----------------------------------------
Confirmed on: Ruby 2.7.0 on Mac OS X 10.13.
```
require 'date'
DateTime._strptime("aus\neastern standard time", "%z")
```
Expected (Ruby 2.6.3 works like this):
```
=> {:zone=>"aus\neastern standard time", :offset=>36000}
```
Actual on Ruby 2.7.0 :
```
=> {:zone=>"aus\neastern standard time", :offset=>nil}
```
Appendix:
* A space character case, such as `"aus eastern standard time"`, still works on Ruby 2.7.0.
--
https://bugs.ruby-lang.org/