Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 1630)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#327 wontfix chicken-install is PARTIALLY DOWN Jim Ursetto
Description

galinha no longer exists and alaric's machine isn't responding.

chicken-install does not work.

#332 fixed chicken-install throws an internal error in HEAD felix winkelmann Jim Ursetto
Description

Hello esteemed team leader.

I am having a reproducible error pulling down the sql-de-lite egg from either mirror, which I have tracked down to commit 7bd92ff78681ddee949441114bcc8bd6bd6a4284. The symptom is below:

$ chicken-install -n -l http://code.call-cc.org/cgi-bin/henrietta.cgi sql-de-lite
retrieving ...
connecting to host "code.call-cc.org", port 80 ...
requesting "/cgi-bin/henrietta.cgi?name=sql-de-lite&mode=default" ...
reading response ...
HTTP/1.1 200 OK
Date: Thu, 12 Aug 2010 04:04:47 GMT
Server: Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 mod_ssl/2.2.9 OpenSSL/0.9.8g
Connection: close
Vary: Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/plain
reading chunks ...

[pause of about 6 seconds]

Error: (=) bad argument type - not a number: #f

Something in that commit 7bd92ff78 is causing the error; the parent commit works. I have to assume it is an interaction between TCP and the new flonum milliseconds stuff. I am using experimental HEAD (c6d6f125c1eed52dd9e8540fc4454eea95472b09) which still has this issue. Some other eggs I've tried seem to work, so perhaps this is because sql-de-lite is transferring 4MB.

Unfortunately I haven't tracked down the exact cause yet, but hopefully this will help.

#333 fixed read/write invariance on symbols consisting of digits Jim Ursetto
Description
(symbol->string
 (with-input-from-string
  (with-output-to-string
   (lambda ()
    (write (string->symbol "3"))))
  read))

Error: (symbol->string) bad argument type - not a symbol: 3

because the 3 is read as a number. In other words, (string->symbol "3") should return |3| not 3. It works fine for floating point numbers, though.

#;11> (string->symbol "1.3")
|1.3|
#;12> (string->symbol "3")
3
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.