2011-10-27 01:57:58 +02:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package time
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// force US/Pacific for time zone tests
|
2011-12-13 20:16:27 +01:00
|
|
|
localOnce.Do(initTestingZone)
|
2011-10-27 01:57:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var Interrupt = interrupt
|