| Index: sdk/lib/core/date_time.dart
|
| diff --git a/sdk/lib/core/date_time.dart b/sdk/lib/core/date_time.dart
|
| index 5cc9707a88eda48bf771d376c22cfa6b458325cc..c1ce73145df1bc1c2d320669a8b0f3b6f1cff251 100644
|
| --- a/sdk/lib/core/date_time.dart
|
| +++ b/sdk/lib/core/date_time.dart
|
| @@ -239,7 +239,7 @@ class DateTime implements Comparable {
|
| * timezonemins_opt ::= <empty> | colon_opt digit{2}
|
| */
|
| final RegExp re = new RegExp(
|
| - r'^([+-]?\d{4,5})-?(\d\d)-?(\d\d)' // The day part.
|
| + r'^([+-]?\d{4,6})-?(\d\d)-?(\d\d)' // The day part.
|
| r'(?:[ T](\d\d)(?::?(\d\d)(?::?(\d\d)(.\d{1,6})?)?)?' // The time part
|
| r'( ?[zZ]| ?([-+])(\d\d)(?::?(\d\d))?)?)?$'); // The timezone part
|
|
|
|
|