Re: udp package header

2009-03-31 Thread Artur M. Piwko
lish word is 'packet'. > > If you are on Linux you can use raw sockets for this. > With a little drawback - raw sockets require root privilege. -- [ Artur M. Piwko : Pipen : AMP29-RIPE : RLU:100918 : From == Trap! : SIG:210B ] [ 19:19:19 user up 12028 days

Re: Installation on Vista (Was: ANN: ActivePython 2.6.0.0 is now available)

2008-11-18 Thread Artur M. Piwko
http://www.symantec.com/community/download/1382/msi-run-as-administrator-context-menu-for-vista -- [ Artur M. Piwko : Pipen : AMP29-RIPE : RLU:100918 : From == Trap! : SIG:225B ] [ 14:00:16 user up 11895 days, 1:55, 1 user, load average: 0.94, 0.04, 0.64 ] Do files get embarrass

Re: What's the limit of variables size in pyhton?

2008-01-04 Thread Artur M. Piwko
re is a limit of > 2GB adressable memory per process (this is unrelated to the amount of > physical memory). That's the 32bit Windows limit only (afaik). -- [ Artur M. Piwko : Pipen : AMP29-RIPE : RLU:100918 : From == Trap! : SIG:240B ] [ 16:51:04 user up 11576 days, 4:46, 1 u

Re: Run VPython on FC3

2005-09-23 Thread Artur M. Piwko
need libgtk-(open)gl package (i don't know the exact name in FC). >> > Actually the gtkgl was installed, I can find it at /usr/local/lib: > /usr/local/lib/libgtkgl.so.4.0.0 > /usr/local/lib/libgtkgl.so.4 > Check for presence of /usr/local/lib in /etc/ld.so.conf Append it if nec

Re: QCheckListItem signal question

2005-09-20 Thread Artur M. Piwko
can examine the state of > the item passed to the slot. > Yes, but those signals don't let me distinguish between item change and check/uncheck. I found the way - override QCheckListItem method activate(). -- [ Artur M. Piwko : Pipen : AMP29-RIPE : RLU:100918 : From == Trap! : SIG:212B

QCheckListItem signal question

2005-09-20 Thread Artur M. Piwko
Is there a way to distinguish if QCheckListItem was checked/unchecked or clicked? -- [ Artur M. Piwko : Pipen : AMP29-RIPE : RLU:100918 : From == Trap! : SIG:213B ] [ 15:36:46 user up 10740 days, 3:31, 1 user, load average: 0.06, 0.06, 0.06 ] Grain grows best in

Re: Run VPython on FC3

2005-09-16 Thread Artur M. Piwko
gl.so.4 > > Does anybody know a solution for this problem? > You need libgtk-(open)gl package (i don't know the exact name in FC). -- [ Artur M. Piwko : Pipen : AMP29-RIPE : RLU:100918 : From == Trap! : SIG:216B ] [ 21:56:44 user up 10736 days, 9:51, 1 user, load average: 0.06,

Re: Try this

2005-07-25 Thread Artur M. Piwko
In the darkest hour on 24 Jul 2005 12:10:47 -0700, RunLevelZero <[EMAIL PROTECTED]> screamed: > list = os.walk("C:\python24\Tools") r"C:\python24\Tools" Artur -- [ Artur M. Piwko : Pipen : AMP29-RIPE : RLU:100918 : From == Trap! : SIG:230B ] [ 01:45:21 user up 106

Re: Clearing the screen

2005-01-01 Thread Artur M. Piwko
In the darkest hour on Sat, 25 Dec 2004 09:41:54 +1030, Ishwor <[EMAIL PROTECTED]> screamed: >>>> def cls(): > for i in range(1,40): > print " "; > Slightly ot, but perhaps this'll work for you: def cls(): print "\033[

Re: temp file name

2004-12-21 Thread Artur M. Piwko
pnam itself. >From tmpnam manual: BUGS The precise meaning of `appropriate' is undefined; it is unspecified how accessibility of a directory is determined. Never use this func- tion. Use mkstemp(3) instead. Use tempfile.mkstemp() instead. -- [ Artur M. Piwko