I don't think we need to make a copy of isDomainName just to satisfy a ...
14 years, 8 months ago
(2010-11-05 17:23:36 UTC)
#2
I don't think we need to make a copy of isDomainName just to
satisfy a test. For now let's do
func isDomainName(s string) bool {
panic("unimplemented")
}
and then in the test do
if runtime.GOOS == "windows" {
return
}
I don't think we need to make a copy of isDomainName just to satisfy a ...
14 years, 8 months ago
(2010-11-05 17:23:59 UTC)
#3
I don't think we need to make a copy of isDomainName just to
satisfy a test. For now let's do
func isDomainName(s string) bool {
panic("unimplemented")
}
and then in the test do
if runtime.GOOS == "windows" {
return
}
Please take another look. On 2010/11/05 17:23:59, rsc wrote: > I don't think we need ...
14 years, 8 months ago
(2010-11-06 01:53:11 UTC)
#4
Please take another look.
On 2010/11/05 17:23:59, rsc wrote:
> I don't think we need to make a copy of isDomainName just to
> satisfy a test. For now let's do
>
> func isDomainName(s string) bool {
> panic("unimplemented")
> }
>
> and then in the test do
>
> if runtime.GOOS == "windows" {
> return
> }
Done.
Issue 2932041: code review 2932041: net: fix windows build
(Closed)
Created 14 years, 8 months ago by vcc
Modified 14 years, 8 months ago
Reviewers: brainman
Base URL:
Comments: 0