#jython IRC Log (v0.9)

Index

IRC Log for 2011-11-09

Timestamps are in GMT/BST.

[0:02] * shashank1 (~shashank@128.138.65.159) Quit (Ping timeout: 256 seconds)
[1:24] * shashank1 (~shashank@65-101-219-224.hlrn.qwest.net) has joined #jython
[1:29] * plankton (~plankton@187.7.145.78) has joined #jython
[1:45] * stakkars (~tismer@213-65-251-34-no35.business.telia.com) Quit (Read error: Connection reset by peer)
[1:46] * stakkars (~tismer@213-65-251-34-no35.business.telia.com) has joined #jython
[1:49] * wainersm (~wainersm@189.111.85.97) Quit (Quit: Ex-Chat)
[2:16] * rwalter (~chatzilla@64.209.43.161) Quit (Remote host closed the connection)
[2:25] * plankton (~plankton@187.7.145.78) Quit (Ping timeout: 252 seconds)
[3:57] * r0bby (~wakawaka@guifications/user/r0bby) has joined #jython
[4:34] * r0bby is now known as robbyoconnor
[6:33] * offbyone (u910@gateway/web/irccloud.com/x-pdpmkakyjzvkcfhr) has joined #jython
[7:54] * stakkars_ (~tismer@213-65-251-34-no35.business.telia.com) has joined #jython
[7:56] * stakkars (~tismer@213-65-251-34-no35.business.telia.com) Quit (Ping timeout: 252 seconds)
[7:56] * stakkars_ is now known as stakkars
[8:21] * shashank1 (~shashank@65-101-219-224.hlrn.qwest.net) Quit (Ping timeout: 260 seconds)
[8:23] * Trundle (~andy@python/site-packages/trundle) has joined #jython
[8:43] * MacRohard (rm@felix.lechat.ir) Quit (Ping timeout: 245 seconds)
[9:06] <agronholm> JYTHONPATH does not seem to affect the jython importing machinery
[9:07] <agronholm> I just tried adding my source folder to JYTHONPATH and everything else to classpath
[9:07] <agronholm> then imp.load("my.module");
[9:07] <agronholm> => fails
[9:07] <agronholm> adding my source path to CLASSPATH fixes it
[9:07] <agronholm> I'd like to hear why
[9:12] <agronholm> seems like no matter what I do I cannot get pdb to display the source code when I do "l" at a breakpoint
[10:12] * stakkars_ (~tismer@213-65-251-34-no35.business.telia.com) has joined #jython
[10:15] * stakkars (~tismer@213-65-251-34-no35.business.telia.com) Quit (Ping timeout: 260 seconds)
[10:15] * stakkars_ is now known as stakkars
[10:43] * MacRohard (rm@felix.lechat.ir) has joined #jython
[11:07] * JStoker (jstoker@unaffiliated/jstoker) Quit (Ping timeout: 258 seconds)
[11:15] * JStoker (jstoker@unaffiliated/jstoker) has joined #jython
[11:16] * wainersm (~wainersm@189.111.91.204) has joined #jython
[11:48] * stakkars (~tismer@213-65-251-34-no35.business.telia.com) Quit (Quit: schnarch)
[11:54] * thijstriemstra (~thijs@5249260E.cm-4-2a.dynamic.ziggo.nl) Quit (Read error: Operation timed out)
[12:07] * stakkars (~tismer@c-c4c4e055.1321-1-64736c11.cust.bredbandsbolaget.se) has joined #jython
[12:10] * juneau001 (~juneau@131.225.24.141) has joined #jython
[12:59] * KayT3 (~KayT3@63.84.81.41) has joined #jython
[14:06] * wainersm (~wainersm@189.111.91.204) Quit (Quit: Ex-Chat)
[14:07] * wainersm (~wainersm@189.111.91.204) has joined #jython
[14:41] * Arfrever (~Arfrever@apache/committer/Arfrever) has joined #jython
[14:46] * agronholm (~Demi-god@nblzone-211-37.nblnetworks.fi) Quit (Ping timeout: 258 seconds)
[14:50] * agronholm (~Demi-god@nblzone-211-37.nblnetworks.fi) has joined #jython
[16:08] * shashank (~shashank@65-101-219-224.hlrn.qwest.net) has joined #jython
[16:09] * juneau001 (~juneau@131.225.24.141) Quit (Quit: juneau001)
[16:14] <jimbaker> shashank, with jython-pilot, is there still a reason to use PyTableCode? i wonder if we can just flatten the inheritance and move the functionality of PyMethodCode there
[16:15] <shashank> I did not see any reason to leave it there other than to still support maybe other kinds of de-optimizations
[16:16] <shashank> jimbaker: but you are right, as of now we do not use it for anything else and PyTableCode could just be used for everything
[16:17] <jimbaker> shashank, right, let's just keep it simple and merge the functionality into PyTableCode
[16:17] <shashank> jimbaker: ok sure, I'll do that
[16:19] <jimbaker> shashank, thanks. naively, it's rather curious this class continues to live, but the basic idea remains sound for jython
[16:20] <shashank> jimbaker: yes, maybe we should just call it PyMethodCode? Since we have got rid of the `table` now?
[16:20] <jimbaker> shashank, yeah, it's not quite the table it was, is it
[16:22] <jimbaker> shashank, btw, do you properly handle more than 10 args in the call?
[16:23] <shashank> yeah if it's more than 10, I have to look into this, but I think I dispatch directly to PyMethodCode
[16:24] <jimbaker> ok, just not clear. it seems to me that a page or so of docs on what is going in terms of linkage would be beneficial for PyMethodCode, specifically around the normal case (expected inlining), handling of deopt, and also uninlned situations like > 10 args
[16:25] <shashank> jimbaker: Yeah, I think you are right. I will go ahead and add those docs
[16:25] <jimbaker> and just put it in PyMethodCode itself
[16:25] <jimbaker> shashank, thanks! this is starting to really look good i think
[16:25] <shashank> jimbaker: with that I'll also fix the class inheritance of PyTableCode
[16:25] <shashank> jimbaker: and also remove all the debugging that's commented out and other garbage
[16:26] <jimbaker> shashank, yeah, no worries :)
[16:28] <jimbaker> shashank, periodically i think we a more extensive debugging system. but i so rarely want to see certain output again once things actually work. but if it makes sense, take a look at PyBytecode
[16:28] <shashank> jimbaker: yeah work on PyByteCode has been long pending
[16:29] <jimbaker> that's a good case imho of some specialized debugging support that's just not obvious
[16:29] <jimbaker> shashank, no worries about that, we know we will get there pretty soon
[16:37] * jimbaker (~jbaker@canonical/jimbaker) Quit (Quit: Coyote finally caught me)
[16:38] * jimbaker (~jbaker@c-75-71-80-146.hsd1.co.comcast.net) has joined #jython
[16:38] * jimbaker (~jbaker@c-75-71-80-146.hsd1.co.comcast.net) Quit (Changing host)
[16:38] * jimbaker (~jbaker@canonical/jimbaker) has joined #jython
[16:51] * lopexx (~lopx@84-10-213-252.dynamic.chello.pl) has joined #jython
[16:51] * lopexx (~lopx@84-10-213-252.dynamic.chello.pl) Quit (Client Quit)
[17:38] * Trundle (~andy@python/site-packages/trundle) Quit (Remote host closed the connection)
[18:00] * robbyoconnor (~wakawaka@guifications/user/r0bby) Quit (Ping timeout: 260 seconds)
[18:18] * shashank (~shashank@65-101-219-224.hlrn.qwest.net) Quit (Quit: Leaving.)
[18:44] * balooo (~Balooo@77.241.236.204) has joined #jython
[18:46] <balooo> is it possible to use SOAPpy with jython?
[18:49] * balooo (~Balooo@77.241.236.204) has left #jython
[18:52] * shashank (~shashank@ucb-np2-159.colorado.edu) has joined #jython
[18:56] * shashank (~shashank@ucb-np2-159.colorado.edu) Quit (Ping timeout: 258 seconds)
[19:04] * shashank (~shashank@ucb-np2-159.colorado.edu) has joined #jython
[19:06] * thijstriemstra (~thijs@5249260E.cm-4-2a.dynamic.ziggo.nl) has joined #jython
[19:41] * thijstriemstra (~thijs@5249260E.cm-4-2a.dynamic.ziggo.nl) Quit (Quit: Leaving.)
[20:02] <jimbaker> balooo, it's been a while since i looked at soappy, but if i remember correctly, it worked but was very slow. best to use some of the java functionality out there, in conjunction w/ jython
[20:14] <Arfrever> jimbaker: balooo has quited from this channel 154 seconds after he wrote his question.
[20:14] <jimbaker> Arfrever, but perhaps he will read the log
[20:15] <jimbaker> in the past, we used to have more of async style on this channel. it can work well :)
[20:24] * wainersm (~wainersm@189.111.91.204) Quit (Quit: Ex-Chat)
[20:44] * stakkars (~tismer@c-c4c4e055.1321-1-64736c11.cust.bredbandsbolaget.se) Quit (Quit: schnarch)
[21:47] * stakkars (~tismer@213-65-251-34-no35.business.telia.com) has joined #jython
[22:05] * KayT3 (~KayT3@63.84.81.41) Quit (Read error: Connection reset by peer)
[22:41] * juneau001 (~juneau@50-103-21-181.dklb.il.frontiernet.net) has joined #jython
[23:10] * shashank (~shashank@ucb-np2-159.colorado.edu) Quit (Ping timeout: 258 seconds)
[23:20] * juneau001_ (~juneau@50.44.12.66) has joined #jython
[23:23] * juneau001 (~juneau@50-103-21-181.dklb.il.frontiernet.net) Quit (Ping timeout: 258 seconds)
[23:23] * juneau001_ is now known as juneau001

Index

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