azrael schrieb:
> i'd like to get more control like in c with pointers. I want to loose
> the data after disabling:
>
list=[]
list.append(Node(1))
list.append(Node(2))
list[0].next=list[1]
>
>
> 1, 2
>
>
list.append(Node(3))
list[1].next=list[2]
>
>
> 1,2
"azrael" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
| Hy, i am a student and in 2 days I am writing a test in data
| structures and algorithms. I've done my homework and understood all
| the implementations and structures. My profesor was so kind to allow
| us to use any programi
In <[EMAIL PROTECTED]>, Dan Bishop
wrote:
> Now that nested_scopes and generators are no longer optional, the only
> thing left is "from __future__ import division", which makes the "/"
> operator on integers give the same result as for floats.
>From 2.5 on we have `with_statement`::
>>> __f
In <[EMAIL PROTECTED]>, Jammer wrote:
> Will a failed decode overwrite the variable?
>
> message = message.decode('iso-8859-1')
> or do I need to do
> msg = message.decode('iso-8859-1')
Why don't you just try?
In [2]: a = u'\u2022'
In [3]: a = a.decode('iso-8859-1')
---
Will a failed decode overwrite the variable?
message = message.decode('iso-8859-1')
or do I need to do
msg = message.decode('iso-8859-1')
--
http://mail.python.org/mailman/listinfo/python-list
"NoName" <[EMAIL PROTECTED]> writes:
> from random import choice
> import string
> print ''.join([choice(string.letters+string.digits) for i in
> range(1,8)])
>
> !!generate password once :(
>
> who can write this smaller or without 'import'?
If you don't mind possibly getting a few nonalphanum
On Sun, 28 Jan 2007 20:24:23 -0800, manstey wrote:
> Hi,
>
> Our class has its attributes set as classes, as in
>
> MyClass.Phone.Value='34562346'
> MyClass.Phone.Private=True
The Python convention is that classes have initial capitals (MyClass),
instances do not, and nor do attribute names.
I
On Jan 28, 1:25 am, "lee" <[EMAIL PROTECTED]> wrote:
> what are the things that we can do with import from future usage.i
> heard its very interesting..thanks
Now that nested_scopes and generators are no longer optional, the only
thing left is "from __future__ import division", which make
Steven D'Aprano wrote:
> A few issues:
>
> (1) It doesn't seem to be reversible:
>
'© and many more...'.decode('latin-1')
> u'© and many more...'
>
> What should I do instead?
Unfortunately, there's nothing in the standard library that can do that,
as far as I know. You'll have to write y
On Sun, 28 Jan 2007 23:41:19 -0500, Leif K-Brooks wrote:
> >>> s = u"© and many more..."
> >>> s.encode('ascii', 'xmlcharrefreplace')
> '© and many more...'
Wow. That's short and to the point. I like it.
A few issues:
(1) It doesn't seem to be reversible:
>>> '© and many more...'.decode('lat
On Jan 27, 10:43 pm, avidfan <[EMAIL PROTECTED]> wrote:
> I need to parse a log file using python and I need some advice/wisdom
> on the best way to go about it:
>
> The log file entries will consist of something like this:
>
> ID=8688 IID=98889998 execute begin - 01.21.2007 status enabled
>
2007/1/29, Leif K-Brooks <[EMAIL PROTECTED]>:
NoName wrote:
> from random import choice
> import string
> print ''.join([choice(string.letters+string.digits) for i in
> range(1,8)])
>
> !!generate password once :(
So add a while true: line.
> who can write this smaller or without 'import'?
NoName wrote:
> from random import choice
> import string
> print ''.join([choice(string.letters+string.digits) for i in
> range(1,8)])
>
> !!generate password once :(
So add a while true: line.
> who can write this smaller or without 'import'?
Why are those your goals?
--
http://mail.python.
Perl:
@char=("A".."Z","a".."z",0..9);
do{print join("",@char[map{rand @char}(1..8)])}while(<>);
!!generate passwords untill U press ctrl-z
Python (from CookBook):
from random import choice
import string
print ''.join([choice(string.letters+string.digits) for i in
range(1,8)])
!!generate pass
Steven D'Aprano wrote:
> I have a string containing Latin-1 characters:
>
> s = u"© and many more..."
>
> I want to convert it to HTML entities:
>
> result =>
> "© and many more..."
>
> Decimal/hex escapes would be acceptable:
> "© and many more..."
> "© and many more..."
>>> s = u"© and many
En Mon, 29 Jan 2007 00:05:24 -0300, Steven D'Aprano
<[EMAIL PROTECTED]> escribió:
> I have a string containing Latin-1 characters:
>
> s = u"© and many more..."
>
> I want to convert it to HTML entities:
>
> result =>
> "© and many more..."
>
Module htmlentitydefs contains the tables you're loo
Hi,
Our class has its attributes set as classes, as in
MyClass.Phone.Value='34562346'
MyClass.Phone.Private=True
Inside the MyClass definition we have a function like this:
def MyFunc(self,clsProperty):
if clsProperty.Private:
print 'Private property'
else:
print ClsProper
Adonis Vargas wrote:
[...]
>
> Its *very* ugly, but im pretty sure you can make it look prettier.
>
> import htmlentitydefs as entity
>
> s = u"© and many more..."
> t = ""
> for i in s:
> if ord(i) in entity.codepoint2name:
> name = entity.codepoint2name.get(ord(i))
> entity
Steven D'Aprano wrote:
> I have a string containing Latin-1 characters:
>
> s = u"© and many more..."
>
> I want to convert it to HTML entities:
>
> result =>
> "© and many more..."
>
> Decimal/hex escapes would be acceptable:
> "© and many more..."
> "© and many more..."
>
> I can look up tab
I think you're right. I'll find a blender forum. Thanks for your help.
: -)
"John Nagle" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> AKA gray asphalt wrote:
>> "John Nagle" <[EMAIL PROTECTED]> wrote in message
>> news:[EMAIL PROTECTED]
>
>> Is the manual you refer to the group
Scripter47 wrote:
> How do i get my ip address?
>
> in cmd.exe i just type "ipconfig" then it prints:
> ...
> IP-address . . . . . . . . . . . . . . . . . : 192.168.1.10
> ...
> how can i do that in python??
>
If you want to get your external IP you can do:
import urllib
checkIP
I have a string containing Latin-1 characters:
s = u"© and many more..."
I want to convert it to HTML entities:
result =>
"© and many more..."
Decimal/hex escapes would be acceptable:
"© and many more..."
"© and many more..."
I can look up tables of HTML entities on the web (they're a dime a
d
See our explain and compare about new service or feature from three
search providers ; Windows Live (MSN) ,Yahoo! ,and Google.
Learn more and get it today.
At http://searchprovider.awardspace.com/
Thank you very much.
--
http://mail.python.org/mailman/listinfo/python-list
On Jan 28, 2:26 am, Klaus Alexander Seistrup <[EMAIL PROTECTED]> wrote:
> Scripter47 wrote:
> > How do i get my ip address?
>
> > in cmd.exe i just type "ipconfig" then it prints:
> > ...
> > IP-address . . . . . . . . . . . . . . . . . : 192.168.1.10
> > ...
> > how can i do that
I can't use the subprocess module because my app needs to be compatible with
Python 2.3 so, is there another approach to this problem???
Thanks!
On 1/26/07, Gabriel Genellina <[EMAIL PROTECTED]> wrote:
"Raúl Gómez C." <[EMAIL PROTECTED]> escribió en el mensaje
news:[EMAIL PROTECTED]
> I'm try
Klaus Alexander Seistrup wrote:
> urllib.urlopen("http://myip.dk/";)
http://whatismyip.org gives it to you in a more usable format. But, as
others have pointed out, it might return your router's IP.
--
Garry Knight
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Gabriel Genellina wrote:
> But these are not the requested functions, inet_ntop() and inet_pton():
>
> py> socket.inet_ntop
> Traceback (most recent call last):
> File "", line 1, in ?
> AttributeError: 'module' object has no attribute 'inet_ntop'
>
>
Oops, my bad. Should have had more coff
On Jan 28, 7:46 pm, Gabriel Genellina <[EMAIL PROTECTED]> wrote:
> At Sunday 28/1/2007 11:28, Kent Tenney wrote:
>
> >I want to generate the following file;
>
> >
> >
> >stuff
>
> >How should I be doing this?open("filename","w").write(' >encoding="utf-8"?>\n'
> '\n'
> 'stuff\n'
At Sunday 28/1/2007 18:21, Thomas Nelson wrote:
<[EMAIL PROTECTED]> wrote:
>Define method __gt__.
This works, thanks. I was a little surprised though. is __cmp__ used
by any builtin functions?
The problem is, rich comparison functions take precedence over
__cmp__, so if your base class (lis
On Sat, 27 Jan 2007, Damjan wrote:
>
>> I am trying to get pyzeroconf (http://sourceforge.net/projects/pyzeroconf)
>> running on my machine but having trouble... Running the Zeroconf.py file
>> seems to register the service, but is unable to find it.
>
> You should be running avahi.. it also come
At Sunday 28/1/2007 15:17, Irmen de Jong wrote:
> Are these functions (inet_ntop(), inet_pton()) from the socket library
> supported on Windows.
Why didn't you just try:
[E:\Projects]python
Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyr
At Sunday 28/1/2007 13:41, Viewer T. wrote:
I am quite a newbie and I am trying to interface with Microsoft Word
2003 COM with Python. Please what is the name of the COM server for
Microsoft Word 2003?
Just use Word.Application, will launch the currently installed Word:
py> import win32com.cl
At Sunday 28/1/2007 11:28, Kent Tenney wrote:
I want to generate the following file;
stuff
How should I be doing this?
open("filename","w").write('\n'
'\n'
'stuff\n')
:)
As far as I can tell, ElementTree() requires everything
to be inside the root element (leo_file)
J
At Sunday 28/1/2007 10:28, Colin J. Williams wrote:
Klaus Alexander Seistrup wrote:
>
> python -c 'import re, urllib; print re.findall("Your IP:
(.+?)", urllib.urlopen("http://myip.dk/";).read())[0]'
>
Your one-liner doesn't work for me, with Windows XP, but the following
On XP you should s
At Wednesday 24/1/2007 22:06, john g wrote:
i have a memory leak issue with extension function that im working
on. it reads data from a binary file into a stl vector then creates
a new list to pass back to the python interface. the function works
the first 1021 times but then gives a segmentat
Kevin Walzer wrote:
> I am trying to create a number of Tk PhotoImages from a single
> directory. Currently I am hard-coding file names and image names, like so:
>
> def makeImages(self):
> self.imagedir = (os.getcwd() + '/images/')
> self.folder_new=PhotoImage(file=self.imagedir
Kevin Walzer wrote:
> I am trying to create a number of Tk PhotoImages from a single
> directory. Currently I am hard-coding file names and image names, like so:
>
> def makeImages(self):
> self.imagedir = (os.getcwd() + '/images/')
> self.folder_new=PhotoImage(file=self.imagedir
I am trying to create a number of Tk PhotoImages from a single
directory. Currently I am hard-coding file names and image names, like so:
def makeImages(self):
self.imagedir = (os.getcwd() + '/images/')
self.folder_new=PhotoImage(file=self.imagedir + 'folder_new.gif')
self
i'd like to get more control like in c with pointers. I want to loose
the data after disabling:
>>> list=[]
>>> list.append(Node(1))
>>> list.append(Node(2))
>>> list[0].next=list[1]
1, 2
>>> list.append(Node(3))
>>> list[1].next=list[2]
1,2,3
>>> list[0].next=list[2]
1,3
Thank you.
--
http://mail.python.org/mailman/listinfo/python-list
At Friday 26/1/2007 09:47, aus stuff wrote:
Hi, im not sure if this is how i reply to the mail-list, excuse me
if incorrect.
Forwarding now to the list.
Gabriels' solution works fine > ftp.retrlines('RETR ' + fl, lambda
line:fileObj.write('%s\n' % line))
But lambda's confuse me (newbie he
What are you trying to make in the first place? A singly linked list? If so
google is littered with examples of linked lists done in python. A simple
search for 'python linked list' brings up many results.
Btw, for future reference, no need for apologetics (the second post).
- Jonathan
--
http
I'm not a kid who heard that Python is simple, so he wants to use it
and throw it away. I discovered it about 2 months ago, and I learnt it
better then c in 2 years.
I want to use python for this test because i love it. I am amazed
about what i can do i such little time. My god, I even printed
Hy, i am a student and in 2 days I am writing a test in data
structures and algorithms. I've done my homework and understood all
the implementations and structures. My profesor was so kind to allow
us to use any programing language we want, and I'd like to use
pythhon. At the first look it look
Thomas Nelson schrieb:
> On Jan 28, 3:13 pm, Wojciech Muła
> <[EMAIL PROTECTED]> wrote:
>> Define method __gt__.
>
> This works, thanks. I was a little surprised though. is __cmp__ used
> by any builtin functions?
It is used by max() if the object doesn't implement __gt__.
Regards,
Martin
--
kloro wrote:
> This is somewhat off topic, but I think many programmers would be
> interested to look at a working model of a microcoded computer at:
>
> tomspages.com
>
> click on the link for 'Hack the Com puter Model.' It conveys among
> other
> things the physical events that underli
On Jan 29, 4:57 am, Jammer <[EMAIL PROTECTED]> wrote:
> Does anyone that knows python want to write me a byte dump for strings? :-)
>
> I am trying to modify a plugin (that someone else wrote) that uses
> interprocess communication.
> It works on strings without special characters but it fails on
On Jan 28, 3:13 pm, Wojciech Muła
<[EMAIL PROTECTED]> wrote:
>Define method __gt__.
This works, thanks. I was a little surprised though. is __cmp__ used
by any builtin functions?
Thanks,
THN
--
http://mail.python.org/mailman/listinfo/python-list
This is somewhat off topic, but I think many programmers would be
interested to look at a working model of a microcoded computer at:
tomspages.com
click on the link for 'Hack the Com puter Model.' It conveys among
other
things the physical events that underlie execution of a microcode
in
Thomas Nelson wrote:
> My code:
>
> class Policy(list):
> def __cmp__(self,other):
> return cmp(self.fitness,other.fitness)
Define method __gt__.
--
http://mail.python.org/mailman/listinfo/python-list
On 28 Jan 2007 12:46:07 -0800, Thomas Nelson <[EMAIL PROTECTED]> wrote:
>My code:
>
>class Policy(list):
>def __cmp__(self,other):
>return cmp(self.fitness,other.fitness)
>
>j = Policy()
>j.fitness = 3
>k = Policy()
>k.fitness = 1
>l = Policy()
>l.fitness = 5
>print max([j,k,l]).fitness
My code:
class Policy(list):
def __cmp__(self,other):
return cmp(self.fitness,other.fitness)
j = Policy()
j.fitness = 3
k = Policy()
k.fitness = 1
l = Policy()
l.fitness = 5
print max([j,k,l]).fitness
prints 3, when I was expecting it to print 5. What have I done wrong?
Thanks for
AKA gray asphalt wrote:
> "John Nagle" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> Is the manual you refer to the group project on blender.org or the $ manual
> like the one on Ebay?
>
The "Blender 2.3 Guide" book. Also, if you're going to program the thing,
the "Blender
>> I'm making special versions of existing functions,
>> and now I want the help-text of the newly created function to exists of
>
> Don't you think your users can follow this easy reference theirselves?
My public consist of physicians with some knowledge of MatLab.
I'm trying to give them a syst
Rob Wolfe wrote:
> Jammer <[EMAIL PROTECTED]> writes:
>
>> Does anyone that knows python want to write me a byte dump for strings? :-)
>>
>> I am trying to modify a plugin (that someone else wrote) that uses
>> interprocess communication.
>> It works on strings without special characters but it fa
Andrew wrote:
> Hi
>
> Are these functions (inet_ntop(), inet_pton()) from the socket library
> supported on Windows.
>
> If not is there an equivalent for them using Windows
>
> Ive seen mention of people creating their own in order to use them
>
> Appreciate the help
>
> ty
Why didn't you
Jammer <[EMAIL PROTECTED]> writes:
> Does anyone that knows python want to write me a byte dump for strings? :-)
>
> I am trying to modify a plugin (that someone else wrote) that uses
> interprocess communication.
> It works on strings without special characters but it fails on other
> stings like
Does anyone that knows python want to write me a byte dump for strings? :-)
I am trying to modify a plugin (that someone else wrote) that uses
interprocess communication.
It works on strings without special characters but it fails on other
stings like "Björk".
It calls decode('utf8') but I gues
Stef Mientki schrieb:
> I'm making special versions of existing functions,
> and now I want the help-text of the newly created function to exists of
> 1. an extra line from my new function
> 2. all the help text from the old function
>
> # the old function
> def triang(M,sym=1):
> """The M-poi
Hi
Are these functions (inet_ntop(), inet_pton()) from the socket library
supported on Windows.
If not is there an equivalent for them using Windows
Ive seen mention of people creating their own in order to use them
Appreciate the help
ty
--
http://mail.python.org/mailman/listinfo/python-lis
Stef Mientki <[EMAIL PROTECTED]> writes:
> I'm making special versions of existing functions,
> and now I want the help-text of the newly created function to exists of
> 1. an extra line from my new function
> 2. all the help text from the old function
>
> # the old function
> def triang(M,sym=1):
I am quite a newbie and I am trying to interface with Microsoft Word
2003 COM with Python. Please what is the name of the COM server for
Microsoft Word 2003?
--
http://mail.python.org/mailman/listinfo/python-list
maybe you should make use of the objects' __doc__ attribute which
holds the appropriate docstring. try to append something to it in the
constructor. :)
more on this in the manual:
http://docs.python.org/tut/node11.html#SECTION001130
On Jan 28, 4:58 pm, Stef Mientki <[EMAIL PROT
I'm making special versions of existing functions,
and now I want the help-text of the newly created function to exists of
1. an extra line from my new function
2. all the help text from the old function
# the old function
def triang(M,sym=1):
"""The M-point triangular window.<== old help
Toby A Inkster wrote:
> Hello Toby, excellent name you have there.
Why, thank you!
> What advantage (if any) does this method have over standard UNIX-style
> pipes?
The advantage is being able to write my own filters and input/output
modules and have as small a granularity as needed (while stan
Scripter47 wrote:
> How do i get my ip address?
Which IP address. One computer might have many IP addresses. (Indeed a
typical network-connected computer will tend to have at least one for each
connected network device, plus the special address 127.0.0.1 for the
loopback network.) How is Python s
Steve Holden wrote:
> There is absolutely no need to know the IP address of "your router" to
> communicate with Internet devices. Either your IP layer is configured to
> know the addresses of one or more routers, or it has discovered those
> address by dynamic means, or you can't get off-net be
Toby wrote:
> Any idea how to improve the script and solve this problem?
Hello Toby, excellent name you have there. What advantage (if any) does
this method have over standard UNIX-style pipes?
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
--
http://mail.pyth
Howdy,
I want to generate the following file;
stuff
How should I be doing this?
As far as I can tell, ElementTree() requires everything
to be inside the root element (leo_file)
Thanks,
Kent
--
http://mail.python.org/mailman/listinfo/python-list
> problem. I do not want to create my own SSH client and, AFAICT, there
> is no SSH client in Twisted. The library also seem to have some
> problems with handling HTTP proxies in a transparent
> way:http://twistedmatrix.com/trac/ticket/1774
>
> --
> mvh Björn
There is a ssh implementation in t
Adam wrote:
> Hey,
>
> This will get your IP address:
>
> ###Code
> print socket.gethostbyaddr(socket.gethostname())
> ('compname', [], ['192.168.1.2'])
> End Code
>
> If you are wanting to to communicate over the internet you will have
> to get the IP of you rounter
gooli schrieb:
> I have a class with a lot of attributes whose objects are accessed
> from multiple threads. I would like to synchronize the access to all
> the attributes, i.e. acquire a lock, return the value, release the
> lock (in a finally clause).
>
> Is there a way to do that without tur
Colin J. Williams wrote:
> Your one-liner doesn't work for me, with Windows XP, but the
> following does, within Python.
Could it be due to shell-escaping issues? I don't know anything
about Windows...
Cheers,
--
Klaus Alexander Seistrup
http://klaus.seistrup.dk/
--
http://mail.python.org
Adam wrote:
> This will get your IP address:
>
> ###Code
> print socket.gethostbyaddr(socket.gethostname())
> ('compname', [], ['192.168.1.2'])
> End Code
It will return an IP address, but not necessarily the one you want:
#v+
[EMAIL PROTECTED]:~ $ python -c 'import
Klaus Alexander Seistrup wrote:
> Scripter47 wrote:
>
>> How do i get my ip address?
>>
>> in cmd.exe i just type "ipconfig" then it prints:
>> ...
>> IP-address . . . . . . . . . . . . . . . . . : 192.168.1.10
>> ...
>> how can i do that in python??
>
> #v+
>
> python -c 'impo
Hey,
This will get your IP address:
###Code
print socket.gethostbyaddr(socket.gethostname())
('compname', [], ['192.168.1.2'])
End Code
If you are wanting to to communicate over the internet you will have
to get the IP of you rounter. So you will have to either find
helo ppl!
i wrote a small mp3 streaming server called "csikk" in python using
basehttpserver.
you can give it a try if you wish:
http://code.google.com/p/csikk/
actually i need help in compiling an osx binary for my app, cause i
don't own a mac. i wonder if anyone could help me.
thanks in adv
>
> I found it a little strange that the top-level directory in the
> distribution is called "andre" rather than "crunchy", but that's a very
> minor point.
Dang! Thanks for pointing this out; I've made the proper change. I
had checked out from "my" development branch, as it contained the
fin
lee schrieb:
> Guys whats the from future module in python?thanks
>
http://docs.python.org/lib/module-future.html
It's a module with that "future changes" may be activated (currently
such as the with_statement, what isn't in the "2.5 standard" so far).
BTW, it's not the 'from future' module, i
Scripter47 wrote:
>> python -c 'import re, urllib; print re.findall("Your IP:
>> (.+?)", urllib.urlopen("http://myip.dk/";).read())[0]'
>
> Hmm then you need Internet connecting.
That's what IP adresses are for...
> can i do it without that?
Perhaps you could use the method mentioned in
htt
Guys whats the from future module in python?thanks
--
http://mail.python.org/mailman/listinfo/python-list
Klaus Alexander Seistrup skrev:
> Scripter47 wrote:
>
>> How do i get my ip address?
>>
>> in cmd.exe i just type "ipconfig" then it prints:
>> ...
>> IP-address . . . . . . . . . . . . . . . . . : 192.168.1.10
>> ...
>> how can i do that in python??
>
> #v+
>
> python -c 'impo
Scripter47 wrote:
> How do i get my ip address?
>
> in cmd.exe i just type "ipconfig" then it prints:
> ...
> IP-address . . . . . . . . . . . . . . . . . : 192.168.1.10
> ...
> how can i do that in python??
#v+
python -c 'import re, urllib; print re.findall("Your IP: (.+?)",
How do i get my ip address?
in cmd.exe i just type "ipconfig" then it prints:
...
IP-address . . . . . . . . . . . . . . . . . : 192.168.1.10
...
how can i do that in python??
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] wrote:
> Here're three sample 3-6 min videos showing off Python to math
> teachers
> thinking about using a computer language instead of just calculators:
>
> http://controlroom.blogspot.com/2007/01/python-for-math-teachers.html
>
> Higher resolution versions are available to t
André wrote:
> Version 0.8 of Crunchy has been released. It is available on
> http://code.google.com/p/crunchy/
>
> Crunchy, the Interactive Python Tutorial Maker, is an application that
> transforms an ordinary html-based Python tutorial into an interactive
> session within a web browser. Curre
I have a class with a lot of attributes whose objects are accessed
from multiple threads. I would like to synchronize the access to all
the attributes, i.e. acquire a lock, return the value, release the
lock (in a finally clause).
Is there a way to do that without turning each attribute into a
Duncan Smith wrote:
> In moving from 2.4 to 2.5 I find that some of my unit tests are now
> failing. I've worked out that the problem relates to the set update
> method. In 2.4 I could update a set with an iterable type derived from
> dict as the argument. I now find that the set is update
We have just launched a new Search Tool - http://www.ogleo.com
Kindly have a look and give us your suggestions here:
Ogleo Discussion Forum http://forum.ogleo.com
Links:
==
Ogleo Home Page - http://www.ogleo.com
Ogleo Traffic Details - http://ogleo.com/traffic
Ogleo Discussion Forums - http://
"John Nagle" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> AKA gray asphalt wrote:
>> "John Nagle" <[EMAIL PROTECTED]> wrote in message
>> news:[EMAIL PROTECTED]
>>
>>>AKA gray asphalt wrote:
>>>
I downloaded Blender but there was no link for python. Am I on the right
tr
90 matches
Mail list logo