#jython IRC Log (v0.9)

Index

IRC Log for 2010-12-17

Timestamps are in GMT/BST.

[0:04] * lheuer_ (~heuer@blfd-4db0e383.pool.mediaWays.net) has joined #jython
[0:04] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[0:04] * lheuer_ is now known as lheuer
[0:05] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 265 seconds)
[0:07] * burhan (~burhan@94.129.189.140) has joined #jython
[0:11] * burhan (~burhan@94.129.189.140) Quit (Ping timeout: 260 seconds)
[0:13] * burhan (~burhan@94.129.189.140) has joined #jython
[0:16] * Oti (~ohumbel@adsl-84-226-245-160.adslplus.ch) Quit (Quit: Oti)
[0:18] * burhan (~burhan@94.129.189.140) Quit (Ping timeout: 240 seconds)
[0:21] * burhan (~burhan@94.129.189.140) has joined #jython
[0:29] * burhan (~burhan@94.129.189.140) Quit (Ping timeout: 250 seconds)
[0:31] * burhan (~burhan@94.129.189.140) has joined #jython
[0:42] * burhan (~burhan@94.129.189.140) Quit (Ping timeout: 240 seconds)
[0:44] * lheuer (~heuer@blfd-4db0e383.pool.mediaWays.net) Quit (Ping timeout: 240 seconds)
[0:45] * burhan (~burhan@94.129.189.140) has joined #jython
[0:50] * burhan (~burhan@94.129.189.140) Quit (Ping timeout: 255 seconds)
[1:07] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[1:14] <burhan> is there a specific channel for jython-django support?
[1:16] <agronholm> no
[1:16] <burhan> I don't know if the error I am getting is from jython or jython-django or the database :/
[1:17] <burhan> the database *driver* that is.
[1:17] <agronholm> are you sure that sqlite (jdbc) is supposed to work with django?
[1:18] <burhan> yes, but even if it didn't - I get the same error with mysql's jdbc drivers.
[1:33] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 260 seconds)
[1:35] * burhan (~burhan@94.129.189.140) has joined #jython
[1:36] * njoyce (~njoyce@124-150-81-39.dyn.iinet.net.au) Quit (Ping timeout: 264 seconds)
[1:42] * burhan (~burhan@94.129.189.140) Quit (Ping timeout: 250 seconds)
[1:44] * burhan (~burhan@94.129.189.140) has joined #jython
[1:45] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[1:45] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[1:45] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Client Quit)
[2:05] * headius (~headius@216.160.3.79) has joined #jython
[2:16] * jimbaker (~jimbaker@c-24-8-39-78.hsd1.co.comcast.net) has joined #jython
[2:23] * headius (~headius@216.160.3.79) Quit (Quit: headius)
[2:35] * bowenl2 (~bowenl2@rrcs-69-193-6-146.nys.biz.rr.com) has joined #jython
[2:39] * njoyce (~njoyce@124-171-90-82.dyn.iinet.net.au) has joined #jython
[2:49] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[2:55] <burhan> is there a way from cython to embed jython and use a java library (as opposed to the other way around).
[3:04] <agronholm> cython does not enter into this
[3:05] <agronholm> surely you know what you're talking about?
[3:05] <agronholm> burhan: ^
[3:05] <burhan> yeah, just realized what I said. I've been up all night (its 6 AM) trying to get jython to work :(
[3:05] * ohumbel (5390f2dc@gateway/web/freenode/ip.83.144.242.220) Quit (Ping timeout: 265 seconds)
[3:05] <agronholm> you can use py4j if you don't want to involve jython
[3:06] * njoyce (~njoyce@124-171-90-82.dyn.iinet.net.au) Quit (Ping timeout: 260 seconds)
[3:06] <burhan> I really want to use jython except I'm running into a wall with jython-django and I'm lost as to what is the problem.
[3:07] <agronholm> why do you specifically want to run jython instead of cpython
[3:07] <burhan> I have to use a payment gateway, who only have libraries in java.
[3:08] <agronholm> py4j is an option then, unless your server must absolutely be a java server
[3:09] <burhan> that's the other problem - I'm trying to find a way to remotely manage running instances on a server, and I think this is only possible in the java world (ie, no way to "stop" individual applications in Apache for example).
[3:10] <burhan> the obvious solution is to just use jython - but this database access issue is getting me no where.
[3:10] <agronholm> yeah since apache does not have a concept of application
[3:10] <agronholm> this is something I've been planning to rectify
[3:10] <agronholm> but in the meantime, you're stuck with java then I guess
[3:11] <burhan> I have no problems - if only this database access issue would sort itself out.
[3:11] <agronholm> so if you launch jython with CLASSPATH set to point to the sqlite jar, you can't import it?
[3:12] <burhan> I even flirted with the idea of killing wsgi processes as a way of "restarting" the application, but I don't think this is too smart.
[3:12] <burhan> agronholm: no, that's not the problem. A simple import like "from org.sqlite import JDBC" works.
[3:13] <agronholm> you complained earlier that this wasn't working either
[3:13] <agronholm> so what IS the problem then
[3:13] <burhan> the problem is with django-jython
[3:14] <burhan> with it, I get errors with sqlite, mysqldb or postgresql libraries.
[3:14] * lolsuper_ (~super_@unaffiliated/lolsuper-/x-9881387) has joined #jython
[3:15] <agronholm> what errors
[3:16] <burhan> http://pylonshq.com/pasties/3a1d38a6344caabfcaf891f1254aaf47
[3:17] <burhan> the example in the jythonbook seems to use the same driver and it works - so not sure what is wrong with what I'm doing.
[3:18] <agronholm> where does the DatabaseOperations class come from
[3:18] <burhan> I haven't a clue.
[3:19] <agronholm> shouldn't be too hard to find out
[3:19] <agronholm> this looks like an API mismatch
[3:20] <burhan> hmm ... maybe you are right. I think I'll give my eyes some rest and look at it after a few hours. Been up all night and the sun is up now (0620).
[3:20] <agronholm> are you in russia or israel?
[3:21] <burhan> Kuwait (GMT+3)
[3:21] <agronholm> ah
[3:35] * lolsuper_ (~super_@unaffiliated/lolsuper-/x-9881387) Quit (Quit: Leaving)
[5:04] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 265 seconds)
[5:06] * burhan (~burhan@94.129.189.140) has joined #jython
[5:06] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[5:06] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[5:11] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 265 seconds)
[5:13] * burhan (~burhan@94.129.189.140) has joined #jython
[5:13] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[5:13] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[5:20] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[5:21] * burhan (~burhan@94.129.189.140) has joined #jython
[5:21] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[5:21] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[5:27] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 264 seconds)
[5:29] * burhan (~burhan@94.129.189.140) has joined #jython
[5:29] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[5:29] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[5:37] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[5:39] * burhan (~burhan@94.129.189.140) has joined #jython
[5:39] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[5:39] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[5:46] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[5:48] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[5:48] * bowenl2 (~bowenl2@rrcs-69-193-6-146.nys.biz.rr.com) Quit (Ping timeout: 265 seconds)
[6:27] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 255 seconds)
[6:29] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[6:34] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 255 seconds)
[6:36] * burhan (~burhan@94.129.189.140) has joined #jython
[6:36] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[6:36] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[6:44] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 260 seconds)
[6:45] * burhan (~burhan@94.129.189.140) has joined #jython
[6:45] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[6:45] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[6:52] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 260 seconds)
[6:54] * burhan (~burhan@94.129.189.140) has joined #jython
[6:54] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[6:54] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[7:00] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[7:01] * burhan (~burhan@94.129.189.140) has joined #jython
[7:01] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[7:01] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[7:08] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[7:10] * burhan (~burhan@94.129.189.140) has joined #jython
[7:10] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[7:10] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[7:39] * jabley (~jabley@cpc1-farn4-0-0-cust318.6-2.cable.virginmedia.com) has joined #jython
[7:41] * thobe (~Adium@c83-249-247-186.bredband.comhem.se) Quit (Quit: Leaving.)
[7:41] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[7:48] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[7:50] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[7:54] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 240 seconds)
[7:56] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[7:58] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[8:01] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[8:02] * bowenl2 (~bowenl2@rrcs-69-193-6-146.nys.biz.rr.com) has joined #jython
[8:04] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 255 seconds)
[8:06] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[8:10] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Quit: stakkars_)
[8:17] * bowenl2 (~bowenl2@rrcs-69-193-6-146.nys.biz.rr.com) Quit (Ping timeout: 250 seconds)
[8:20] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 265 seconds)
[8:21] * burhan (~burhan@94.129.189.140) has joined #jython
[8:21] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[8:21] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[8:27] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[8:29] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[8:31] * thobe (~Adium@212-162-171-110.skbbip.com) has joined #jython
[8:36] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 240 seconds)
[8:37] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[8:38] * burhan (~burhan@94.129.189.140) has joined #jython
[8:38] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[8:38] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[8:40] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[8:46] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[8:47] * burhan (~burhan@94.129.189.140) has joined #jython
[8:47] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[8:47] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[8:48] * lheuer (~heuer@unaffiliated/lheuer) Quit (Read error: Connection reset by peer)
[8:48] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[8:54] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 240 seconds)
[8:56] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[9:06] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 264 seconds)
[9:08] * burhan (~burhan@94.129.189.140) has joined #jython
[9:08] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[9:08] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[9:12] * ohumbel (5390f2dc@gateway/web/freenode/ip.83.144.242.220) has joined #jython
[9:17] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[9:18] * burhan (~burhan@94.129.189.140) has joined #jython
[9:18] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[9:18] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[9:19] * bowenl2 (~bowenl2@rrcs-69-193-6-146.nys.biz.rr.com) has joined #jython
[9:24] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[9:26] * burhan (~burhan@94.129.189.140) has joined #jython
[9:26] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[9:26] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[9:36] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 272 seconds)
[9:38] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[9:47] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 265 seconds)
[9:48] * jabley (~jabley@cpc1-farn4-0-0-cust318.6-2.cable.virginmedia.com) Quit (Quit: jabley)
[9:48] * burhan (~burhan@94.129.189.140) has joined #jython
[9:48] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[9:48] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[9:54] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[9:55] * burhan (~burhan@94.129.189.140) has joined #jython
[9:55] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[9:56] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[9:59] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[10:00] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[10:00] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[10:03] * seberg (~sebastian@134.76.0.204) has joined #jython
[10:04] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[10:08] * wmeissner (~wmeissner@C-59-100-83-205.bri.connect.net.au) has joined #jython
[10:09] * seberg (~sebastian@134.76.0.204) Quit (Quit: Ex-Chat)
[10:11] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 265 seconds)
[10:13] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[10:14] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[10:15] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[10:18] * lheuer_ (~heuer@blfd-5d8238d2.pool.mediaWays.net) has joined #jython
[10:19] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 265 seconds)
[10:20] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[10:20] * lheuer_ is now known as lheuer
[10:21] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[10:23] * jabley (~jabley@87-84-49-84.absolutely2.mezzonet.net) has joined #jython
[10:24] * lheuer_ (~heuer@blfd-4db0e2de.pool.mediaWays.net) has joined #jython
[10:25] * lheuer (~heuer@blfd-5d8238d2.pool.mediaWays.net) Quit (Ping timeout: 265 seconds)
[10:25] * lheuer_ is now known as lheuer
[10:29] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 240 seconds)
[10:32] * burhan (~burhan@94.129.189.140) has joined #jython
[10:32] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[10:32] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[10:34] * lheuer (~heuer@blfd-4db0e2de.pool.mediaWays.net) Quit (Read error: Connection reset by peer)
[10:38] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[10:39] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[10:40] * burhan (~burhan@94.129.189.140) has joined #jython
[10:40] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[10:40] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[10:46] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[10:47] * burhan (~burhan@94.129.189.140) has joined #jython
[10:47] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[10:47] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[10:52] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[10:53] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[10:59] * lheuer_ (~heuer@blfd-5d823500.pool.mediaWays.net) has joined #jython
[11:00] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[11:00] * lheuer_ is now known as lheuer
[11:01] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 240 seconds)
[11:03] * burhan (~burhan@94.129.189.140) has joined #jython
[11:03] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[11:03] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[11:06] * lheuer_ (~heuer@blfd-5d8215f8.pool.mediaWays.net) has joined #jython
[11:06] * lheuer (~heuer@blfd-5d823500.pool.mediaWays.net) Quit (Ping timeout: 240 seconds)
[11:06] * lheuer_ is now known as lheuer
[11:15] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[11:15] * lheuer (~heuer@blfd-5d8215f8.pool.mediaWays.net) Quit (Ping timeout: 240 seconds)
[11:16] * burhan (~burhan@94.129.189.140) has joined #jython
[11:16] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[11:16] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[11:16] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[11:21] * stakkars_ (~tismer@89.204.153.69) has joined #jython
[11:23] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 260 seconds)
[11:23] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 272 seconds)
[11:25] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[11:30] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[11:31] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 240 seconds)
[11:34] * burhan (~burhan@94.129.189.140) has joined #jython
[11:34] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[11:34] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[11:34] * lheuer_ (~heuer@blfd-4d08ff15.pool.mediaWays.net) has joined #jython
[11:34] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[11:35] * lheuer_ is now known as lheuer
[11:41] * lheuer (~heuer@blfd-4d08ff15.pool.mediaWays.net) Quit (Ping timeout: 265 seconds)
[11:41] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[11:42] * burhan (~burhan@94.129.189.140) has joined #jython
[11:42] * burhan (~burhan@94.129.189.140) Quit (Changing host)
[11:42] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[11:46] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[11:49] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Ping timeout: 276 seconds)
[11:50] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) has joined #jython
[11:50] * lheuer_ (~heuer@blfd-4db1b00e.pool.mediaWays.net) has joined #jython
[11:51] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[11:51] * lheuer_ is now known as lheuer
[12:01] * lheuer_ (~heuer@blfd-4d0860e7.pool.mediaWays.net) has joined #jython
[12:01] * lheuer (~heuer@blfd-4db1b00e.pool.mediaWays.net) Quit (Ping timeout: 264 seconds)
[12:02] * lheuer_ is now known as lheuer
[12:02] * seberg (~sebastian@134.76.218.252) has joined #jython
[12:09] * lheuer_ (~heuer@blfd-5d822811.pool.mediaWays.net) has joined #jython
[12:10] * lheuer (~heuer@blfd-4d0860e7.pool.mediaWays.net) Quit (Ping timeout: 240 seconds)
[12:10] * lheuer_ is now known as lheuer
[12:15] * juneau001 (~juneau@131.225.24.197) has joined #jython
[12:18] * lheuer_ (~heuer@blfd-d9bf07ed.pool.mediaWays.net) has joined #jython
[12:20] * lheuer (~heuer@blfd-5d822811.pool.mediaWays.net) Quit (Ping timeout: 240 seconds)
[12:20] * lheuer_ is now known as lheuer
[12:31] * lheuer (~heuer@blfd-d9bf07ed.pool.mediaWays.net) Quit (Ping timeout: 240 seconds)
[12:32] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[12:32] * stakkars_ (~tismer@89.204.153.69) Quit (Ping timeout: 240 seconds)
[12:33] * stakkars_ (~tismer@82.113.121.0) has joined #jython
[12:44] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 272 seconds)
[12:44] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[12:51] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[12:52] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[13:03] * lheuer_ (~heuer@blfd-5d823a3b.pool.mediaWays.net) has joined #jython
[13:03] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[13:03] * lheuer_ is now known as lheuer
[13:09] * lheuer (~heuer@blfd-5d823a3b.pool.mediaWays.net) Quit (Read error: Connection reset by peer)
[13:10] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[13:19] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[13:20] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[13:28] * lheuer_ (~heuer@blfd-5d821220.pool.mediaWays.net) has joined #jython
[13:29] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 272 seconds)
[13:29] * lheuer_ is now known as lheuer
[13:35] * clajo04_ (~clajo04_@pool-74-108-95-175.nycmny.fios.verizon.net) Quit (Quit: clajo04_)
[13:35] * lheuer (~heuer@blfd-5d821220.pool.mediaWays.net) Quit (Ping timeout: 240 seconds)
[13:36] * jabley_ (~jabley@87-84-49-84.absolutely2.mezzonet.net) has joined #jython
[13:38] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[13:39] * clajo04_ (~clajo04_@pool-74-108-95-175.nycmny.fios.verizon.net) has joined #jython
[13:39] * jabley (~jabley@87-84-49-84.absolutely2.mezzonet.net) Quit (Ping timeout: 260 seconds)
[13:39] * jabley_ is now known as jabley
[13:46] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 264 seconds)
[14:38] * stakkars_ (~tismer@82.113.121.0) Quit (Quit: stakkars_)
[15:44] * thobe (~Adium@212-162-171-110.skbbip.com) Quit (Quit: Leaving.)
[16:13] * jbaker (~jimbaker@c-24-8-39-78.hsd1.co.comcast.net) has joined #jython
[16:27] * lopex (lopex@89-76-44-27.dynamic.chello.pl) has joined #jython
[16:36] * jabley (~jabley@87-84-49-84.absolutely2.mezzonet.net) Quit (Quit: jabley)
[16:39] * wmeissner (~wmeissner@C-59-100-83-205.bri.connect.net.au) Quit (*.net *.split)
[16:39] * jcp (~jw@bzflag/contributor/javawizard2539) Quit (*.net *.split)
[16:41] * thobe (~Adium@83.249.247.186) has joined #jython
[16:41] * wmeissner (~wmeissner@C-59-100-83-205.bri.connect.net.au) has joined #jython
[16:41] * jcp (~jw@bzflag/contributor/javawizard2539) has joined #jython
[17:00] * seberg (~sebastian@134.76.218.252) Quit (Quit: Ex-Chat)
[17:24] * MarderIII (~marderii@enneman.demon.nl) has joined #jython
[17:34] * wmeissner (~wmeissner@C-59-100-83-205.bri.connect.net.au) has left #jython
[17:38] * burhan (~burhan@pdpc/supporter/student/fyrestrtr) Quit (Quit: leaving)
[17:40] * jabley (~jabley@cpc1-farn4-0-0-cust318.6-2.cable.virginmedia.com) has joined #jython
[20:14] * juneau001 (~juneau@131.225.24.197) Quit (Quit: juneau001)
[20:22] * MarderIII (~marderii@enneman.demon.nl) Quit (Quit: leaving)
[20:56] * jbaker (~jimbaker@c-24-8-39-78.hsd1.co.comcast.net) Quit (Quit: jbaker)
[21:02] * headius (~headius@216.160.3.79) has joined #jython
[21:20] * bowenl2 (~bowenl2@rrcs-69-193-6-146.nys.biz.rr.com) Quit (Ping timeout: 255 seconds)
[21:26] * jbaker (~jimbaker@66.35.39.121) has joined #jython
[21:38] * enebo (~enebo@184-97-205-152.mpls.qwest.net) has joined #jython
[21:57] * quizme (~quizme@66.43.117.226) has joined #jython
[21:58] <quizme> how do you install simplejson ?
[21:59] <quizme> just copy the jar file into JYTHON_HOME/src/org/python/modules/
[21:59] <quizme> ?
[22:01] <quizme> sorry i'm clueless
[22:02] * jbaker (~jimbaker@66.35.39.121) Quit (Read error: Operation timed out)
[22:06] * jabley (~jabley@cpc1-farn4-0-0-cust318.6-2.cable.virginmedia.com) Quit (Read error: Connection reset by peer)
[22:07] * jabley (~jabley@cpc1-farn4-0-0-cust318.6-2.cable.virginmedia.com) has joined #jython
[22:09] * MarderIII (~marderii@enneman.demon.nl) has joined #jython
[22:20] <pjenvey> quizme - like most other python packages, download, extract, run jython setup.py install. or if you have distribute/pip installed, use that to automatically download and install it
[22:21] <quizme> pjenvey: thanks, "jython setup.py install" worked.
[22:22] <quizme> i changed cjson.decode to simplejson.decode, and now i'm getting: AttributeError: 'module' object has no attribute 'decode'
[22:32] * diegao (~quassel@189.83.162.193) has joined #jython
[22:39] <pjenvey> simplejson doesn't have a decode function. check out its docs, its API is not the same as cjson
[22:47] * enebo (~enebo@184-97-205-152.mpls.qwest.net) Quit (Read error: Connection reset by peer)
[23:07] <quizme> pjenvey thank you.
[23:19] * diegao (~quassel@189.83.162.193) Quit (Remote host closed the connection)
[23:33] * MarderIII (~marderii@enneman.demon.nl) Quit (Quit: leaving)
[23:47] * headius (~headius@216.160.3.79) Quit (Quit: headius)

Index

These logs were automatically created by JythonLogBot_ on irc.freenode.net using a slightly modified version of the Java IRC LogBot (github).