#jython IRC Log (v0.9)

Index

IRC Log for 2011-01-28

Timestamps are in GMT/BST.

[0:01] * stakkars (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Remote host closed the connection)
[0:02] * stakkars (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[0:03] * jbaker_ (~jimbaker@c-67-190-49-237.hsd1.co.comcast.net) Quit (Quit: jbaker_)
[0:06] * stakkars (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Ping timeout: 260 seconds)
[0:09] * stakkars (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[0:10] * jbaker_ (~jimbaker@184-96-38-253.hlrn.qwest.net) has joined #jython
[0:10] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[0:13] * shanka (~shashank@c-98-245-87-8.hsd1.co.comcast.net) has joined #jython
[0:18] * seberg (~sebastian@134.76.0.204) Quit (Quit: Ex-Chat)
[0:29] * jbaker_ (~jimbaker@184-96-38-253.hlrn.qwest.net) Quit (Quit: jbaker_)
[0:30] * sgithens (~sgithens@2001:18e8:3:443:216:41ff:fe58:c460) Quit (Read error: Operation timed out)
[0:35] <rxKaffee> on the page http://www.jython.org/docs/_sources/index.txt, it says all modules in the library directory will import
[0:35] <rxKaffee> however when I try to import termios, it can not be found
[0:36] <agronholm> because there is no such module?
[0:36] * stakkars (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Remote host closed the connection)
[0:36] * stakkars_ is now known as stakkars
[0:37] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[0:38] <rxKaffee> agronholm: are you telling me that contrary to index.txt, termios does not exist for jython? or are you asking me if "No moduled named termios" is the verbatim error?
[0:39] <agronholm> rxKaffee: do you see a termios.py in jython's Lib directory?
[0:41] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Ping timeout: 255 seconds)
[0:46] <rxKaffee> agronholm: if termios and tty are not distributed with jython, why does the url I linked say that all modules listed in that directory will import?
[0:47] <agronholm> termios is not listed in the dictory, is it?
[0:47] <agronholm> *directory
[0:47] <rxKaffee> http://www.jython.org/docs/_sources/library/termios.txt
[0:47] <rxKaffee> it is
[0:47] <rxKaffee> http://www.jython.org/docs/_sources/library/tty.txt also is
[0:48] <agronholm> someone probably forgot to remove those
[0:48] <rxKaffee> ah
[0:48] <agronholm> not everything can be implemented in Java
[0:48] <rxKaffee> is there some alternative avail for terminal control?
[0:49] <agronholm> is there something you specifically need jython for?
[0:49] <agronholm> (rather than CPython that is)
[0:50] <rxKaffee> I'm writing some java classes, to be used by another group who have a python commandline program utilising the urwid curses interface library
[0:50] <rxKaffee> urwid is what actually needs termios/tty
[0:50] <agronholm> you may want to look up py4j
[0:50] <rxKaffee> and it seems jython is the only option to allow their python project to utilise java classes that I would write
[0:50] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[0:50] <agronholm> I was planning on using that myself
[0:51] <agronholm> no, it's not the only option :)
[0:51] <rxKaffee> well, I should say, its the only option I had been able to locate :)
[0:51] <agronholm> py4j allows you to use pure java and CPython, isolated to their respective processes
[0:51] <agronholm> but bridged almost seamlessly
[0:51] <rxKaffee> ah nice
[0:52] <rxKaffee> are there any other similar options that you know of?
[0:52] <agronholm> execnet allows you to bridge cpython and jython
[0:52] <agronholm> but it's gpl licensed
[0:52] * stakkars (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Ping timeout: 240 seconds)
[0:52] * stakkars__ (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[0:52] * stakkars__ is now known as stakkars
[0:52] * stakkars is now known as 14WAAOE5L
[0:52] * stakkars_ is now known as 30BAARF50
[0:53] * 30BAARF50 (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Remote host closed the connection)
[0:53] * stakkars (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[0:53] <agronholm> rpyc has similar functionality but it's not as polished, but it is MIT licensed
[0:53] <agronholm> requires a patch just to get it to work on jython :P
[0:58] <rxKaffee> thanks agronholm, sounds like of those your first suggestion of py4j would be most applicable
[1:06] * sgithens (~sgithens@adsl-76-252-32-26.dsl.ipltin.sbcglobal.net) has joined #jython
[1:08] <rxKaffee> agronholm: any thoughts on creating a java class and turning it to a machinecode library with GCJ, then using ctypes to access it from python?
[1:09] <agronholm> sounds like a bad idea
[1:10] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[1:10] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Remote host closed the connection)
[1:10] * stakkars (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Read error: No route to host)
[1:10] * stakkars (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[1:13] <rxKaffee> is the ctypes interface not so great or something?
[1:13] <agronholm> dangerous
[1:13] <agronholm> easy to shoot yourself in the foot with
[1:13] <agronholm> not to mention combining it with gcj
[1:29] * shanka1 (~shashank@c-98-245-87-8.hsd1.co.comcast.net) has joined #jython
[1:30] * shanka (~shashank@c-98-245-87-8.hsd1.co.comcast.net) Quit (Ping timeout: 255 seconds)
[1:48] * sgithens (~sgithens@adsl-76-252-32-26.dsl.ipltin.sbcglobal.net) Quit (Ping timeout: 250 seconds)
[1:50] <agronholm> pjenvey: I can't help but to wonder if you saw a completely different patch than I did, based on your comments
[1:51] * Godslastering (~titan@shellium/member/titan) Quit (Remote host closed the connection)
[2:05] * lopex (lopex@89-76-44-27.dynamic.chello.pl) Quit ()
[2:31] <pjenvey> agronholm - what did I miss? it allows IPV6 to _realsocket (which is basically the socket.socket impl)
[2:32] <pjenvey> so that's the ipv6 support, then he basically reverted Oti's patch and instead forces ipv4 addresses from getaddrinfo if you have toggled the workaround
[2:32] <agronholm> assert family in (AF_INET, AF_INET6) <- this wasn't there before oti's patch?
[2:33] * cschneid (~cschneid@c-76-120-122-74.hsd1.co.comcast.net) Quit (Read error: Connection reset by peer)
[2:33] * sgithens (~sgithens@cpe-24-166-26-143.indy.res.rr.com) has joined #jython
[2:33] <pjenvey> right, before it was assert family == AF_INET, "Only AF_INET sockets are currently supported on jython"
[2:33] <agronholm> if adding ipv6 support was that simple, why not do that before?
[2:34] * cschneid (~cschneid@c-76-120-122-74.hsd1.co.comcast.net) has joined #jython
[2:34] <pjenvey> i guess alan was really concerned about winxp
[2:34] <agronholm> -_-'
[2:34] <pjenvey> he wrote most of that module for 2.2, it was a while ago
[2:34] <pjenvey> so winxp was a bigger concern back then
[2:34] <pjenvey> he logged a bug with sun about it, he hoped they'd just fix it but that didn't pan out
[2:35] <agronholm> then that was what I was missing from the patch
[2:35] <agronholm> then it makes sense
[2:35] <pjenvey> i think he said he was intending to do it for 2.5 but didn't get around to it
[2:35] <pjenvey> ipv6 i mean
[4:15] * jbaker_ (~jimbaker@c-24-8-39-78.hsd1.co.comcast.net) has joined #jython
[4:16] * jbaker__ (~jimbaker@c-24-8-39-78.hsd1.co.comcast.net) has joined #jython
[4:16] * jbaker_ (~jimbaker@c-24-8-39-78.hsd1.co.comcast.net) Quit (Read error: Connection reset by peer)
[4:22] * fwierzbicki (~frank@99-106-170-105.lightspeed.sntcca.sbcglobal.net) Quit (Quit: Ex-Chat)
[4:23] * fwierzbicki (~frank@99-106-170-105.lightspeed.sntcca.sbcglobal.net) has joined #jython
[6:12] * shanka1 (~shashank@c-98-245-87-8.hsd1.co.comcast.net) Quit (Ping timeout: 240 seconds)
[7:40] * thobe (~Adium@212-162-171-110.skbbip.com) has joined #jython
[8:34] * ohumbel (5390f2dc@gateway/web/freenode/ip.83.144.242.220) Quit (Quit: Page closed)
[8:38] * ohumbel (5390f2dc@gateway/web/freenode/ip.83.144.242.220) has joined #jython
[8:43] * shanka (~shashank@c-98-245-87-8.hsd1.co.comcast.net) has joined #jython
[9:01] * jabley (~jabley@cpc1-farn4-0-0-cust318.6-2.cable.virginmedia.com) has joined #jython
[10:34] * seberg (~sebastian@134.76.0.204) has joined #jython
[10:37] * 14WAAOE5L (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Quit: schnarch)
[11:23] * jabley (~jabley@cpc1-farn4-0-0-cust318.6-2.cable.virginmedia.com) Quit (Quit: jabley)
[12:00] * jabley (~jabley@87-84-49-84.absolutely2.mezzonet.net) has joined #jython
[12:04] * agronholm (~demigod@nblzone-211-37.nblnetworks.fi) Quit (Read error: Operation timed out)
[12:06] * stakkars_ (~tismer@i59F70325.versanet.de) has joined #jython
[12:08] * shanka (~shashank@c-98-245-87-8.hsd1.co.comcast.net) Quit (Ping timeout: 260 seconds)
[12:12] * juneau001 (~juneau@131.225.174.54) has joined #jython
[12:18] * agronholm (~demigod@nblzone-211-37.nblnetworks.fi) has joined #jython
[12:21] * stakkars_ (~tismer@i59F70325.versanet.de) Quit (Ping timeout: 255 seconds)
[12:27] * stakkars_ (~tismer@i59F70538.versanet.de) has joined #jython
[12:41] * thijstriemstra (~thijs@i219160.upc-i.chello.nl) has joined #jython
[12:59] * lopex (531346b2@gateway/web/freenode/ip.83.19.70.178) has joined #jython
[13:14] * stakkars_ (~tismer@i59F70538.versanet.de) Quit (Remote host closed the connection)
[13:15] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[13:27] * robbyoconnor (~wakawaka@guifications/user/r0bby) Quit (Ping timeout: 276 seconds)
[13:55] * sgithens (~sgithens@cpe-24-166-26-143.indy.res.rr.com) Quit (Ping timeout: 272 seconds)
[14:00] * juneau001 (~juneau@131.225.174.54) Quit (Remote host closed the connection)
[14:00] * juneau001 (~juneau@fess-116326.dhcp.fnal.gov) has joined #jython
[14:11] * mr_luk (~nomail@kraftwerk.ee.ethz.ch) has joined #jython
[14:13] * mr_luk (~nomail@kraftwerk.ee.ethz.ch) has left #jython
[14:33] * ohumbel (5390f2dc@gateway/web/freenode/ip.83.144.242.220) Quit (Quit: Page closed)
[14:36] * sgithens (~sgithens@149-166-216-7.dhcp-in.iupui.edu) has joined #jython
[14:57] * sgithens (~sgithens@149-166-216-7.dhcp-in.iupui.edu) Quit (Ping timeout: 240 seconds)
[15:02] * enebo (~enebo@184-97-209-108.mpls.qwest.net) has joined #jython
[15:18] * sgithens (~sgithens@2001:18e8:3:443:216:41ff:fe58:c460) has joined #jython
[15:21] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) Quit (Quit: schnarch)
[16:33] * shanka (~shashank@c-98-245-87-8.hsd1.co.comcast.net) has joined #jython
[16:43] * stakkars_ (~tismer@89.204.137.98) has joined #jython
[16:43] * enebo (~enebo@184-97-209-108.mpls.qwest.net) Quit (Read error: Connection reset by peer)
[16:43] * enebo (~enebo@184-97-209-108.mpls.qwest.net) has joined #jython
[16:50] * sgithens (~sgithens@2001:18e8:3:443:216:41ff:fe58:c460) Quit (Read error: Operation timed out)
[16:50] * stakkars_ (~tismer@89.204.137.98) Quit (Quit: schnarch)
[17:32] * thobe (~Adium@212-162-171-110.skbbip.com) Quit (Quit: Leaving.)
[17:46] * sgithens (~sgithens@149-166-133-187.dhcp-in.iupui.edu) has joined #jython
[17:55] * jabley (~jabley@87-84-49-84.absolutely2.mezzonet.net) Quit (Quit: jabley)
[18:00] * lopexx (lopex@89-76-44-27.dynamic.chello.pl) has joined #jython
[18:00] * lopex is now known as Guest99356
[18:01] * lopexx (lopex@89-76-44-27.dynamic.chello.pl) Quit (Client Quit)
[18:01] * lopexx (lopex@89-76-44-27.dynamic.chello.pl) has joined #jython
[18:01] * lopexx (lopex@89-76-44-27.dynamic.chello.pl) Quit (Client Quit)
[18:02] * seberg (~sebastian@134.76.0.204) Quit (Quit: Ex-Chat)
[18:03] * lopexx (lopex@89-76-44-27.dynamic.chello.pl) has joined #jython
[18:03] * lopexx (lopex@89-76-44-27.dynamic.chello.pl) Quit (Client Quit)
[18:05] * lopex (lopex@89-76-44-27.dynamic.chello.pl) has joined #jython
[18:15] * thobe (~Adium@83.249.252.226) has joined #jython
[18:43] * enebo (~enebo@184-97-209-108.mpls.qwest.net) Quit (Read error: Connection reset by peer)
[18:44] * enebo (~enebo@184-97-209-108.mpls.qwest.net) has joined #jython
[19:29] * juneau001 (~juneau@fess-116326.dhcp.fnal.gov) Quit (Quit: juneau001)
[19:39] * robbyoconnor (~wakawaka@guifications/user/r0bby) has joined #jython
[19:42] * r0bby (~wakawaka@guifications/user/r0bby) has joined #jython
[19:42] * robbyoconnor (~wakawaka@guifications/user/r0bby) Quit (Read error: Connection reset by peer)
[20:08] * jabley (~jabley@cpc1-farn4-0-0-cust318.6-2.cable.virginmedia.com) has joined #jython
[20:34] * stakkars_ (~tismer@i59F6C3EC.versanet.de) has joined #jython
[20:36] * r0bby (~wakawaka@guifications/user/r0bby) Quit (Ping timeout: 276 seconds)
[20:40] * MarderIII (~marderii@enneman.demon.nl) has joined #jython
[20:41] * shanka (~shashank@c-98-245-87-8.hsd1.co.comcast.net) Quit (Ping timeout: 276 seconds)
[20:43] * enebo (~enebo@184-97-209-108.mpls.qwest.net) Quit (Read error: Connection reset by peer)
[20:44] * enebo (~enebo@184-97-209-108.mpls.qwest.net) has joined #jython
[20:59] * juneau001 (~juneau@pool-70-104-105-153.chi.dsl-w.verizon.net) has joined #jython
[21:00] * stakkars__ (~tismer@i59F6BCFA.versanet.de) has joined #jython
[21:03] * MarderIII (~marderii@enneman.demon.nl) Quit (Ping timeout: 246 seconds)
[21:03] * stakkars_ (~tismer@i59F6C3EC.versanet.de) Quit (Ping timeout: 276 seconds)
[21:03] * shanka (~shashank@ucb-np2-160.colorado.edu) has joined #jython
[21:44] * headius (~headius@216.160.3.79) has joined #jython
[21:45] * shanka (~shashank@ucb-np2-160.colorado.edu) Quit (Ping timeout: 246 seconds)
[21:52] * jabley (~jabley@cpc1-farn4-0-0-cust318.6-2.cable.virginmedia.com) Quit (Quit: jabley)
[22:44] * enebo (~enebo@184-97-209-108.mpls.qwest.net) Quit (Read error: Connection reset by peer)
[22:44] * enebo (~enebo@184-97-209-108.mpls.qwest.net) has joined #jython
[23:09] * cschneid (~cschneid@c-76-120-122-74.hsd1.co.comcast.net) Quit (Remote host closed the connection)
[23:13] * stakkars__ (~tismer@i59F6BCFA.versanet.de) Quit (Quit: schnarch)
[23:15] * cschneid (~cschneid@c-76-120-122-74.hsd1.co.comcast.net) has joined #jython
[23:31] * stakkars_ (~tismer@i59F6BCFA.versanet.de) has joined #jython
[23:38] * stakkars_ (~tismer@i59F6BCFA.versanet.de) Quit (Remote host closed the connection)
[23:38] * stakkars_ (~tismer@77-21-85-35-dynip.superkabel.de) has joined #jython
[23:51] * enebo (~enebo@184-97-209-108.mpls.qwest.net) Quit (Quit: enebo)

Index

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