#jython IRC Log (v0.9)

Index

IRC Log for 2011-12-06

Timestamps are in GMT/BST.

[1:18] * shashank1 (~shashank@ucb-np2-221.colorado.edu) has joined #jython
[1:57] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) has joined #jython
[1:59] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) Quit (Client Quit)
[2:23] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) has joined #jython
[2:23] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) Quit (Client Quit)
[2:26] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) has joined #jython
[2:44] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) Quit (Quit: schnarch)
[4:39] * juneau001 (~juneau@50-103-54-252.dklb.il.frontiernet.net) Quit (Quit: juneau001)
[4:40] * shashank1 (~shashank@ucb-np2-221.colorado.edu) Quit (Ping timeout: 244 seconds)
[4:44] * juneau001 (~juneau@50-103-54-252.dklb.il.frontiernet.net) has joined #jython
[5:14] * robbyoconnor (~wakawaka@guifications/user/r0bby) has joined #jython
[5:18] * robbyoconnor (~wakawaka@guifications/user/r0bby) Quit (Remote host closed the connection)
[5:18] * SinZ|offline is now known as SinZ
[5:21] * robbyoconnor (~wakawaka@guifications/user/r0bby) has joined #jython
[5:27] * juneau001 (~juneau@50-103-54-252.dklb.il.frontiernet.net) Quit (Quit: juneau001)
[5:31] * shashank (~shashank@65-101-219-90.hlrn.qwest.net) has joined #jython
[6:37] * ohumbel (5390f2dc@gateway/web/freenode/ip.83.144.242.220) has joined #jython
[7:40] * Arfrever (~Arfrever@apache/committer/Arfrever) Quit (Quit: Ex??re)
[8:27] * fwierzbicki (~frank@213.215.248.83) has joined #jython
[8:43] * shashank (~shashank@65-101-219-90.hlrn.qwest.net) Quit (Ping timeout: 240 seconds)
[10:57] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) has joined #jython
[10:57] * stakkars (~tismer@p5DDB7E68.dip.t-dialin.net) Quit (Read error: Connection reset by peer)
[10:57] * stakkars_ is now known as stakkars
[11:03] * ohumbel (5390f2dc@gateway/web/freenode/ip.83.144.242.220) Quit (Ping timeout: 265 seconds)
[11:44] * wainersm (~wainersm@201.82.225.3) has joined #jython
[11:48] * SinZ is now known as SinZ|offline
[12:14] * juneau001 (~juneau@131.225.24.66) has joined #jython
[12:48] * robbyoconnor (~wakawaka@guifications/user/r0bby) Quit (Read error: Connection reset by peer)
[12:49] * robbyoconnor (~wakawaka@guifications/user/r0bby) has joined #jython
[15:08] * xranby (~xranby@labb.zafena.se) Quit (Ping timeout: 248 seconds)
[15:11] * ldlework (~dlacewell@168.93.96.4) has joined #jython
[15:11] * xranby (~xranby@labb.zafena.se) has joined #jython
[15:12] <ldlework> Hi I'm using Jython to write server plugins for a server application. I am extending a Java class and it happens that the code expects the class name to be less than 12 characters. However when the Java code introspects my Jython class it gets, "org.python.proxies.__main__$myspark$0". Is there anyway to change this classname mangling?
[15:14] <agronholm> no
[15:14] <ldlework> :/
[15:14] <agronholm> not without modifying jython itself
[15:14] <agronholm> and even then who knows what side effects it will cause
[15:14] <ldlework> So I should probably change the native java code to do something different
[15:15] <agronholm> probably
[15:57] <jimbaker> i rather doubt changing the name mangling is going to break anything, including of such proxies. we just need a unique name. but as mentioned, it's not user controllable now
[16:33] * shashank (~shashank@ucb-np2-221.colorado.edu) has joined #jython
[16:49] * thegeekinside (~thegeekin@200-52-45-239.dynamic.axtel.net) has joined #jython
[17:17] <ldlework> jimbaker, the class name is used in-game for command names
[17:17] <ldlework> as this is minecraft and only 13 characters fit on a line for a sign, the mangling makes it impossible to access the Python commands
[17:17] <ldlework> Its okay, I regular expression'ed it up.
[17:18] <jimbaker> ldlework, sounds good you were able to fix it
[17:19] <jimbaker> part of the indy work i've been involved in is to make it possible to jython classes to look more like java classes, to improve integration. including control of names. but that's some way out
[17:21] * stakkars_ (~tismer@dslb-088-074-053-099.pools.arcor-ip.net) has joined #jython
[17:24] * alexkane (~alexkane@38.117.157.141) has joined #jython
[17:27] <alexkane> I'm connecting to mysql using the zxJDBC library, and trying to use a dynamic cursor. However when I execute a large query the resultset is loading in to the client rather than being stored on the server. Has anyone experienced this before?
[17:36] * stakkars_ (~tismer@dslb-088-074-053-099.pools.arcor-ip.net) Quit (Quit: schnarch)
[17:44] * shashank (~shashank@ucb-np2-221.colorado.edu) Quit (Ping timeout: 268 seconds)
[18:04] <alexkane> adding ?defaultFetchSize=100&useCursorFetch=true to the JDBC url seems to help ...
[18:08] * subhodip (6f77e183@fedora/subhodip) has joined #jython
[18:10] * shashank (~shashank@ucb-np2-221.colorado.edu) has joined #jython
[18:15] * fwierzbicki (~frank@213.215.248.83) Quit (Ping timeout: 244 seconds)
[18:37] <ldlework> What is the trick for accessing protected attributes and methods from inside a Jython subclass?
[18:37] * juneau001 (~juneau@131.225.24.66) has left #jython
[18:43] * ldlework pokes #jython
[18:57] * stakkars_ (~tismer@dslb-088-074-053-099.pools.arcor-ip.net) has joined #jython
[18:58] * shashank (~shashank@ucb-np2-221.colorado.edu) Quit (Ping timeout: 252 seconds)
[18:59] * subhodip (6f77e183@fedora/subhodip) Quit (Ping timeout: 265 seconds)
[20:51] * wainersm (~wainersm@201.82.225.3) Quit (Quit: Ex-Chat)
[21:57] * shashank (~shashank@ucb-np2-221.colorado.edu) has joined #jython
[21:58] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[22:15] * shashank (~shashank@ucb-np2-221.colorado.edu) Quit (Ping timeout: 252 seconds)
[22:34] * ldlework (~dlacewell@168.93.96.4) Quit (Ping timeout: 252 seconds)
[22:40] * stakkars_ (~tismer@dslb-088-074-053-099.pools.arcor-ip.net) Quit (Quit: schnarch)
[22:54] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) has joined #jython
[23:02] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 244 seconds)
[23:06] * lheuer (~heuer@unaffiliated/lheuer) has joined #jython
[23:16] * stakkars_ (~tismer@p5DDB7E68.dip.t-dialin.net) Quit (Quit: schnarch)
[23:29] * stakkars (~tismer@p5DDB7E68.dip.t-dialin.net) Quit (Quit: stakkars)
[23:31] * stakkars (~tismer@p5DDB7E68.dip.t-dialin.net) has joined #jython
[23:36] * lheuer_ (~heuer@89.204.138.80) has joined #jython
[23:36] * lheuer_ (~heuer@89.204.138.80) Quit (Changing host)
[23:36] * lheuer_ (~heuer@unaffiliated/lheuer) has joined #jython
[23:37] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)
[23:37] * lheuer_ is now known as lheuer
[23:53] * lheuer (~heuer@unaffiliated/lheuer) Quit (Ping timeout: 240 seconds)

Index

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