#jython IRC Log (v0.9)

Index

IRC Log for 2011-12-01

Timestamps are in GMT/BST.

[0:21] * sungji (~unknown@31.164.0.187) Quit (Read error: Connection reset by peer)
[0:22] * Arfrever (~Arfrever@apache/committer/Arfrever) has joined #jython
[0:33] * stakkars_ (~tismer@88.130.164.59) Quit (Quit: schnarch)
[0:35] * wainersm (~wainersm@201.82.225.3) Quit (Quit: Ex-Chat)
[1:17] * fwierzbicki (~frank@99-106-170-105.lightspeed.sntcca.sbcglobal.net) Quit (Quit: Ex-Chat)
[1:18] * shashank (~shashank@174-29-75-118.hlrn.qwest.net) has joined #jython
[1:40] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) has joined #jython
[1:46] * fwierzbicki (~frank@99-106-170-105.lightspeed.sntcca.sbcglobal.net) has joined #jython
[1:56] * diminoten (~diminoten@reddit/operator/diminoten) Quit (Quit: Bye!)
[1:59] * diminoten (~diminoten@reddit/operator/diminoten) has joined #jython
[2:16] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) Quit (Quit: schnarch)
[3:12] * G3n3r0 (~G3n3r0@h-69-3-193-195.nycmny83.dynamic.covad.net) has joined #jython
[3:13] <G3n3r0> Going to be testing a Jython IRC client in here soon. Will have nick: Pedobear
[3:20] * r0bby (~wakawaka@guifications/user/r0bby) has joined #jython
[3:21] * r0bby_ (~wakawaka@guifications/user/r0bby) has joined #jython
[3:24] * G3n3r0 (~G3n3r0@h-69-3-193-195.nycmny83.dynamic.covad.net) Quit (Quit: Leaving)
[3:25] * r0bby (~wakawaka@guifications/user/r0bby) Quit (Ping timeout: 258 seconds)
[3:30] <pjenvey> Pedobear powered by Jython, hurray!
[3:33] * r0bby_ is now known as robbyoconnor
[3:38] * robbyoconnor (~wakawaka@guifications/user/r0bby) Quit (Read error: Connection reset by peer)
[4:06] * jimbaker (~jbaker@canonical/jimbaker) Quit (Ping timeout: 248 seconds)
[4:09] * juneau001 (~juneau@50-103-29-192.dklb.il.frontiernet.net) Quit (Quit: juneau001)
[4:28] * Arfrever (~Arfrever@apache/committer/Arfrever) Quit (Quit: Ex??re)
[4:42] * robbyoconnor (~wakawaka@guifications/user/r0bby) has joined #jython
[4:43] * mrkuchbhi (~user@cpe-68-173-127-157.nyc.res.rr.com) has joined #jython
[4:44] <mrkuchbhi> hi .. i am trying to using a method which takes as argument a java.lang.class ...what is its equivalent in jython?
[4:45] <agronholm> mrkuchbhi: the class?
[4:46] <mrkuchbhi> i tried that...it gives "arg can't be coerced to java.lang.Class[]"
[4:47] <agronholm> then the method takes an array of classes and not a class
[4:48] <mrkuchbhi> actually, the documentaion says the argument to be passed is <interface name>.class
[4:48] <agronholm> that [] at the end signifies an array
[4:48] <mrkuchbhi> okay ...
[4:49] <mrkuchbhi> so what should I pass as argument exactly... i tried passing it as a list
[4:50] <mrkuchbhi> same error
[4:50] <agronholm> list corresponds to java.util.List
[4:50] <agronholm> you need to pass an array
[4:50] <mrkuchbhi> oh
[4:50] <agronholm> from array import array
[4:51] <agronholm> array requires the array type as the first argument
[4:51] <agronholm> you probably want that to be java.lang.Class
[4:51] <mrkuchbhi> ok..
[4:57] <mrkuchbhi> well, its giving me an error..i looked up the documentation but it says the initializer is array.array(typecode[, initializer]) where typecode is limited to some basic datatypes
[5:05] <agronholm> mrkuchbhi: typecode can be any actual type
[5:05] <agronholm> what error are you getting?
[5:06] <mrkuchbhi> agronholm: if my class name is abc, i am passing array('java.lang.Class',abc)...and i get TypeError: array() argument 1 must be char, not str
[5:06] <agronholm> why are you passing a string?
[5:06] <agronholm> I told you to pass the type
[5:07] <agronholm> not its name or anything
[5:12] <mrkuchbhi> is this a correct call array(type(java.lang.Class), [abc]) ? what change should i make?
[5:12] <agronholm> why'd you add type()?
[5:12] <agronholm> java.lang.Class is already a type
[5:12] <agronholm> so drop that
[5:12] <mrkuchbhi> okay..trying
[5:13] <mrkuchbhi> it says .. TypeError: can't convert <class __main__.abc at 0x2> to java.lang.Class
[5:14] <agronholm> show me the code please
[5:20] <mrkuchbhi> http://pastebin.com/CHjm1wLP
[5:24] <mrkuchbhi> agronholm: what mistake am i committing?
[5:25] <agronholm> so what error are you getting?
[5:25] <agronholm> mrkuchbhi: I should also point out that the error message on line 4 is never reached
[5:26] <mrkuchbhi> TypeError: can't convert <class __main__.abc at 0x2> to java.lang.Class
[5:26] <agronholm> ah, I get it
[5:26] <agronholm> it's a python class
[5:26] <agronholm> it needs to inherit from java.lang.Object then
[5:27] <agronholm> also, I'm not confident that this will work anyway
[5:27] <mrkuchbhi> abc needs to inherit from java.lang.Object?
[5:27] <agronholm> yes
[5:27] <mrkuchbhi> ok..lemme try
[5:27] <agronholm> I'm still not confident it will work
[5:28] <agronholm> if addHandler uses reflection, it most certainly will not
[5:28] <agronholm> is there an interface that requires implementing annotate()?
[5:30] <agronholm> mrkuchbhi: did you see my comment about line 4?
[5:30] <mrkuchbhi> actually the java equivalent code goes something like this - executor.addHandler("calc", calcImpl, Calculator.class) where Calculator is an interface, calcImpl is an instance of the class that implements the interface
[5:30] <mrkuchbhi> yes..i will remove it
[5:31] <agronholm> mrkuchbhi: have abc implement that interface then
[5:31] <agronholm> at any rate, you will need some java interface
[5:31] <agronholm> otherwise there isn't much that the java code can do with your python class
[5:31] <mrkuchbhi> well...i was actually trying to simulate an interface using abc
[5:33] <mrkuchbhi> agronholm: let me give you some more context .. http://code.google.com/p/json-rpc/wiki/Usage .. i am trying to do this ...the code i am writing is of the server side
[5:43] <mrkuchbhi> agronholm: any thoughts?
[5:43] <agronholm> write a Java interface
[5:43] <agronholm> then inherit abc from it
[5:43] <mrkuchbhi> agronholm: okay
[5:43] <agronholm> use that interface class as the array() first argument
[5:44] <agronholm> is there no python json-rpc library?
[5:44] <agronholm> http://json-rpc.org/wiki/python-json-rpc
[5:44] <agronholm> why not use this instead?
[5:45] <mrkuchbhi> i was not sure if itll work with jython .. i actually tried it on jython 2.2 ..it did not have simplejson..i guess I should now try on 2.5
[5:47] <agronholm> 2.2 is quite ancient
[5:47] <agronholm> you'll be hard pressed to find any library that still works with that
[6:08] * SinZ|offline is now known as SinZ
[6:16] * lnostdal_ (~lnostdal@212.79-161-132.customer.lyse.net) has joined #jython
[6:39] * sungji (~unknown@31.164.0.187) has joined #jython
[6:46] <mrkuchbhi> i am trying to install setuptools (following the instructions from the site), the script downloads the egg...."Downloading http://pypi.python.org/packages/2.5/s/setuptools/setuptools-0.6c11-py2.5.egg" ... then results in an error ... "from setuptools.command.easy_install import main
[6:46] <mrkuchbhi> ImportError: No module named setuptools"
[6:46] <mrkuchbhi>
[6:48] <agronholm> mrkuchbhi: don't waste your time with setuptools
[6:48] <agronholm> install distribute instead
[6:48] <agronholm> setuptools is dead
[6:49] <mrkuchbhi> agronholm: oh okay
[6:49] <mrkuchbhi> ty
[6:49] <agronholm> http://python-distribute.org/
[6:50] <agronholm> get distribute_setup.py
[6:51] * SinZ is now known as SinZ|offline
[6:55] <mrkuchbhi> should I then run it with jython?
[6:57] <mrkuchbhi> coz im getting this error java.lang.ArrayIndexOutOfBoundsException: java.lang.ArrayIndexOutOfBoundsException
[6:57] <mrkuchbhi> when i run with jython
[7:02] <agronholm> really?
[7:02] <agronholm> jython distribute_setup.py and you get that error?
[7:03] <agronholm> and you're sure you're doing it with jython 2.5.2?
[7:03] <agronholm> it works fine, I just tried
[7:04] * sungji (~unknown@31.164.0.187) Quit (Quit: Leaving)
[7:12] <mrkuchbhi> agronholm: yup, jython --version gives 2.5.2
[7:13] <agronholm> can you post the complete output of that command?
[7:13] <mrkuchbhi> yea..one sec
[7:13] * Oti (~ohumbel@adsl-89-217-59-220.adslplus.ch) has joined #jython
[7:14] <mrkuchbhi> oh, btw i also get this warning(?) everytime i start jython Dec 1, 2011 2:11:23 a.m. org.python.google.common.base.internal.Finalizer getInheritableThreadLocalsField
[7:14] <mrkuchbhi> INFO: Couldn't access Thread.inheritableThreadLocals. Reference finalizer threads will inherit thread local values.
[7:14] <mrkuchbhi>
[7:14] <agronholm> there seems to be something deeply wrong with your setup
[7:14] <agronholm> what java version are you using?
[7:15] <agronholm> did you install jython normally (via the installer)?
[7:17] <mrkuchbhi> java version 1.5
[7:17] <mrkuchbhi> http://pastebin.com/3q7NZbYA ..trace
[7:19] <agronholm> mrkuchbhi: try installing jython again
[7:19] <agronholm> what platform is this?
[7:19] <agronholm> oh damn
[7:19] <mrkuchbhi> ubuntu 10.04
[7:19] <agronholm> you're using gcj?
[7:19] <agronholm> then all bets are off
[7:19] <mrkuchbhi> not intentionally
[7:19] <agronholm> you have to use openjdk or oracle java
[7:19] <mrkuchbhi> ohk
[7:20] <agronholm> I have to run
[7:20] <agronholm> =>
[7:20] <mrkuchbhi> agronholm: ok, thanks for the help
[8:35] * shashank (~shashank@174-29-75-118.hlrn.qwest.net) Quit (Ping timeout: 252 seconds)
[9:16] * lnostdal_ (~lnostdal@212.79-161-132.customer.lyse.net) Quit (Quit: Leaving)
[9:43] * SinZ|offline is now known as SinZ
[9:45] <SinZ> can anyone give me an example to getText for a textField and a passField, both on the same window
[9:45] <SinZ> (with swing)
[9:47] <agronholm> getText is trivial for a textField
[9:47] <agronholm> and for password fields: password = String(self.passwordField.password)
[9:52] <SinZ> so
[9:52] <SinZ> ok
[9:53] <SinZ> and with textField (for a username slot)
[9:55] <agronholm> well you already have the textField.text property
[9:55] <agronholm> just use it
[9:56] <SinZ> so userText = String(USERNAME.text)
[9:56] <agronholm> no, USERNAME.text
[9:56] <agronholm> it's already a String
[10:00] <SinZ> rage
[10:00] <agronholm> ?
[10:00] <SinZ> this is not a global defined function =(
[10:00] <agronholm> what is?
[10:01] <SinZ> "this"
[10:01] <agronholm> heh well of course not
[10:01] <SinZ> it is in python aint it
[10:01] <agronholm> what language are we talking about if not Python?
[10:02] <SinZ> well, im used to php =P
[10:02] <agronholm> what were you referring to when you said "it is in python aint it"
[10:02] <agronholm> ?
[10:03] <SinZ> this.blah
[10:05] <agronholm> "this" is not a global defined function in any language that I know
[10:05] <agronholm> and there is no "this" in Python
[10:06] * SinZ studys friends code which uses this. everywhere
[10:06] <agronholm> instance methods get the reference to the current object as the first argument, commonly named "self"
[10:07] <agronholm> of course it is possible to name it "this"
[10:07] <SinZ> AH
[10:07] <agronholm> is this what your friend did?
[10:07] <SinZ> yeh
[10:08] <agronholm> that's highly unorthodox
[10:08] <SinZ> I saw it in the code just then
[10:08] <SinZ> he uses self
[10:08] <agronholm> eh...you just said he used "this" everywhere
[10:10] <SinZ> yeh, mixed up my own code with his
[10:11] <agronholm> but was HIS code using "this" or not?
[10:11] <agronholm> (assuming it's a "he" we're talking about)
[10:11] <SinZ> his code is self
[10:11] <agronholm> so only yours uses "this"?
[10:11] <SinZ> yeh
[10:12] <agronholm> drop that practice
[10:12] <agronholm> always use "self"
[10:12] <SinZ> untill I go back to my native language, php =D
[10:13] <agronholm> I used to code php before I discovered python
[10:13] <agronholm> now I cringe every time I have to touch php
[10:13] <agronholm> I feel like I need to wash my hands
[10:13] <SinZ> I prefer this to self
[10:13] <agronholm> but never write python code using "this"
[10:33] <SinZ> String(self.passwordField.password)
[10:33] <SinZ> Global name String not defined
[10:34] <agronholm> SinZ: of course you have to import it
[10:34] <agronholm> it's java.lang.String
[10:34] <SinZ> import java.lang.String
[10:34] <SinZ> Still not defined
[10:35] <agronholm> *sigh*
[10:35] <agronholm> from java.lang import String
[10:35] <SinZ> ah
[10:35] <SinZ> I suck at both python and java =P
[10:36] <agronholm> if you do "import java.lang.String" then you have to access it that way too
[10:36] <agronholm> use java.lang.String explicitly everywhere
[10:37] <SinZ> hmm, cant use str and java.lang.String in same self.label.text
[10:37] <agronholm> huh?
[10:37] <SinZ> oh god, there WAS a self in my code =(
[10:37] <SinZ> import java.lang.String
[10:37] <SinZ> TypeError: cannot concatenate 'str' and 'java.lang.String' objects
[10:38] <SinZ> self.label.text="You logged in =D \n"+self.userText+"\n"+self.passText
[10:48] <agronholm> try self.label.text = u'You logged in =D\n%s\n%s' % (self.userText, self.passText)
[11:08] <agronholm> SinZ: works?
[11:09] <SinZ> works, just doesnt show userText or passText
[11:09] <agronholm> what do you mean
[11:10] <SinZ> just says You logged in
[11:11] <agronholm> perhaps the label element is not big enough vertically?
[11:11] <agronholm> if you replace \n with something else, do you then see it all?
[11:11] <SinZ> plenty of room
[11:12] <agronholm> there might be plenty of room but you can't assume that the label expands to fill all that space
[11:17] <SinZ> yeh, the username / password fields are null
[11:17] <SinZ> or ""
[11:17] <agronholm> well did you put anything there?
[11:18] <agronholm> can I see your code?
[11:18] <SinZ> pastebinning it now
[11:19] <SinZ> http://pastebin.com/vKXTvXgw
[11:19] <SinZ> nothing in console
[11:19] <agronholm> you should always inherit classes from object if nothing else
[11:19] <agronholm> otherwise you'll end up making old-style classes which lack certain features
[11:20] <SinZ> so Class Launcher inherits object:
[11:21] <agronholm> yes
[11:22] <SinZ> http://pastebin.com/vKXTvXgw
[11:22] <agronholm> sinz, so that you know, operations on visible components should always run in the Event Dispatch Thread
[11:22] <SinZ> oops
[11:22] <agronholm> so I recommend that you only make it visible in the end
[11:23] <agronholm> the frame that is
[11:23] <SinZ> SyntaxError: mismatched input ',' expecting COLON
[11:24] <SinZ> wait
[11:24] <SinZ> SyntaxError: mismatched input ',' expecting COLON
[11:24] <SinZ> SyntaxError: mismatched input 'inherits' expecting COLON
[11:24] <SinZ> stupid cmd window refusing to copy >:(
[11:24] <agronholm> inherits??
[11:24] <agronholm> what's that
[11:24] <SinZ> Class Launcher inherits object:
[11:24] <agronholm> that is not the syntax
[11:25] <agronholm> you should go learn the basics of Python before attempting this...
[11:25] <agronholm> class Launcher(object):
[11:25] <SinZ> ahhh
[11:25] <SinZ> I call that an argument, not a inheritance
[11:26] <agronholm> not with a class
[11:26] <SinZ> I think its swing not updating .text and .password
[11:26] <agronholm> well you're only setting them twice
[11:26] <agronholm> once, sorry
[11:26] <agronholm> self.userText = String(USERNAME.text)
[11:26] <SinZ> and I use them in doLogin
[11:27] <agronholm> do you think that makes Python magically update self.userText whenever USERNAME.text is changed?
[11:27] <agronholm> also, you should only use UPPERCASE names for constants
[11:28] <SinZ> so how would I add a listener to update USERNAME.text when I type stuff in the textField
[11:29] <agronholm> why don't you simply access USERNAME.text directly?
[11:29] <agronholm> why do you need to save the values in interim variables?
[11:29] * SinZ hits self in head
[11:29] <agronholm> :)
[11:31] <SinZ> yay
[11:32] <SinZ> Now to add the stuff to actually login =D
[11:33] <agronholm> why are you doing this in Jython+Swing if you're new to both Python and Java?
[11:40] <SinZ> because I needed GUI and I hate java
[11:40] <SinZ> and C is well, C
[11:40] <SinZ> I just cant do java
[11:40] <agronholm> if you hate Java, why use Java then? (this is still basically Java)
[11:40] <agronholm> also, wouldn't a web gui work for your case?
[11:41] <agronholm> the Java angle adds quite a bit of complexity
[11:41] <SinZ> web gui for a game client?
[11:41] <agronholm> well you didn't say what you were making
[11:41] <SinZ> =P
[11:41] <agronholm> I hope this is not a commercial project
[11:42] <SinZ> nah, just a custom client from scratch for minecraft
[11:42] <agronholm> might be a bit much if you're just learning Python
[11:42] <SinZ> got friends that know it well
[11:42] * wainersm (~wainersm@201.82.225.3) has joined #jython
[11:43] <SinZ> and im going off some of their code, since one is doing a java server, and other is doing a python bot
[11:49] <SinZ> night
[11:50] * SinZ is now known as SinZ|offline
[11:50] <agronholm> isn't it almost morning over there?
[11:51] * maxb (~maxb@jabberwock.vm.bytemark.co.uk) Quit (Ping timeout: 240 seconds)
[12:11] * juneau001 (~juneau@fess-116326.dhcp.fnal.gov) has joined #jython
[12:29] * maxb (~maxb@jabberwock.vm.bytemark.co.uk) has joined #jython
[15:29] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) has joined #jython
[15:29] * jimbaker (~jbaker@c-75-71-80-146.hsd1.co.comcast.net) has joined #jython
[15:29] * jimbaker (~jbaker@c-75-71-80-146.hsd1.co.comcast.net) Quit (Changing host)
[15:29] * jimbaker (~jbaker@canonical/jimbaker) has joined #jython
[15:31] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) Quit (Client Quit)
[15:57] * subhodip (48a3d967@fedora/subhodip) has joined #jython
[16:28] * stakkars_ (~tismer@82.113.121.249) has joined #jython
[16:33] * mrkuchbhi (~user@cpe-68-173-127-157.nyc.res.rr.com) Quit (Remote host closed the connection)
[16:40] * shashank (~shashank@ucb-np2-97.colorado.edu) has joined #jython
[16:46] * RichardLynch (~RichardLy@67-128-187-35.dia.static.qwest.net) has joined #jython
[16:47] <RichardLynch> I'm trying to do: from org.json.simple import JSONObject. Error running worker process (<type 'exceptions.ImportError'>: No module named json
[16:48] <RichardLynch> My startup scripts include export CLASSPATH=/opt/local/share/java/json-simple-1.1.jar:(other jars that work here). What could possibly be wrong?
[16:49] <RichardLynch> jar -tf shows org/json/simple/JSONObject.class
[17:18] * RichardLynch (~RichardLy@67-128-187-35.dia.static.qwest.net) has left #jython
[17:36] * fwierzbicki (~frank@99-106-170-105.lightspeed.sntcca.sbcglobal.net) Quit (Quit: Ex-Chat)
[17:45] * stakkars_ (~tismer@82.113.121.249) Quit (Read error: Connection reset by peer)
[17:51] * fwierzbicki (~frank@99-106-170-105.lightspeed.sntcca.sbcglobal.net) has joined #jython
[18:03] * shashank (~shashank@ucb-np2-97.colorado.edu) Quit (Ping timeout: 258 seconds)
[18:06] * shashank (~shashank@ucb-np2-97.colorado.edu) has joined #jython
[19:31] * stakkars_ (~tismer@dslb-088-074-053-099.pools.arcor-ip.net) has joined #jython
[19:47] * subhodip (48a3d967@fedora/subhodip) Quit (Ping timeout: 265 seconds)
[19:59] * wainersm (~wainersm@201.82.225.3) Quit (Quit: Ex-Chat)
[20:02] * juneau001 (~juneau@fess-116326.dhcp.fnal.gov) Quit (Quit: juneau001)
[20:04] * KayT3 (~KayT3@68-24-131-13.pools.spcsdns.net) has joined #jython
[20:13] * KayT3 (~KayT3@68-24-131-13.pools.spcsdns.net) Quit (Remote host closed the connection)
[20:14] * KayT3 (~KayT3@63.84.81.41) has joined #jython
[20:40] * SinZ|offline is now known as SinZ
[21:01] * shashank (~shashank@ucb-np2-97.colorado.edu) Quit (Read error: Operation timed out)
[21:19] * shashank (~shashank@ucb-np2-97.colorado.edu) has joined #jython
[21:38] * SinZ is now known as SinZ|offline
[22:05] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:05] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[22:06] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:06] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[22:06] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:07] * G3n3r0 (~G3n3r0@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:10] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[22:11] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:14] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[22:14] * shashank (~shashank@ucb-np2-97.colorado.edu) Quit (Ping timeout: 244 seconds)
[22:14] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:15] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[22:16] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:17] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[22:17] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:18] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[22:18] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:29] * fwierzbicki_ (~frank@99-106-170-105.lightspeed.sntcca.sbcglobal.net) has joined #jython
[22:33] * fwierzbicki (~frank@99-106-170-105.lightspeed.sntcca.sbcglobal.net) Quit (Ping timeout: 255 seconds)
[22:33] * fwierzbicki_ is now known as fwierzbicki
[22:37] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[22:38] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:38] <MauBot> Testing.
[22:40] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[22:50] * stakkars_ (~tismer@dslb-088-074-053-099.pools.arcor-ip.net) Quit (Quit: schnarch)
[22:51] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[22:52] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[23:01] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[23:02] <MauBot> hello?
[23:02] <MauBot> Am
[23:03] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[23:04] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[23:04] <MauBot> OK,
[23:07] * juneau001 (~juneau@50-103-41-145.dklb.il.frontiernet.net) has joined #jython
[23:08] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) has joined #jython
[23:10] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[23:10] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[23:10] <MauBot> Hopefully,
[23:11] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[23:11] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[23:12] <MauBot> Can
[23:12] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[23:14] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[23:14] <MauBot> Should
[23:14] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[23:14] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) has joined #jython
[23:15] <MauBot> Should definitely send whole msg now.
[23:16] * MauBot (~maubot@h-68-167-71-56.nycmny83.dynamic.covad.net) Quit (Remote host closed the connection)
[23:28] * plankton (~peretto@187.54.10.106) has joined #jython
[23:30] * shashank (~shashank@ucb-np2-97.colorado.edu) has joined #jython

Index

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