Google does Python....
-
Out of all the technology that is available... www.technewsworld.com/story/Google-Gaps-Leave-Search-Susceptible-37543.html[^] Rocky <>< www.HintsAndTips.com - Now with "Recommendation" postings www.MyQuickPoll.com - Now with Recent Poll List www.GotTheAnswerToSpam.com - Again :)
-
Out of all the technology that is available... www.technewsworld.com/story/Google-Gaps-Leave-Search-Susceptible-37543.html[^] Rocky <>< www.HintsAndTips.com - Now with "Recommendation" postings www.MyQuickPoll.com - Now with Recent Poll List www.GotTheAnswerToSpam.com - Again :)
AFAIK, their core engine is written in C++, but a lots of supporting software is Python. Look for their job adds[^] - they always want C++ and Python developers.
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
-
Out of all the technology that is available... www.technewsworld.com/story/Google-Gaps-Leave-Search-Susceptible-37543.html[^] Rocky <>< www.HintsAndTips.com - Now with "Recommendation" postings www.MyQuickPoll.com - Now with Recent Poll List www.GotTheAnswerToSpam.com - Again :)
Python is pretty slick, check out my blog to see some of it in action. - Nick Parker
My Blog | My Articles -
Python is pretty slick, check out my blog to see some of it in action. - Nick Parker
My Blog | My ArticlesLast I looked, it did not have namespaces and that was enough to close the book :) Rocky <>< www.HintsAndTips.com - Now with "Recommendation" postings www.MyQuickPoll.com - Now with Recent Poll List www.GotTheAnswerToSpam.com - Again :)
-
Last I looked, it did not have namespaces and that was enough to close the book :) Rocky <>< www.HintsAndTips.com - Now with "Recommendation" postings www.MyQuickPoll.com - Now with Recent Poll List www.GotTheAnswerToSpam.com - Again :)
I don't think namespaces are that important for scripting languages. You wouldn't want to use Python for a large-scale project anyway, because of its dynamic type system and poor performance.
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
-
Last I looked, it did not have namespaces and that was enough to close the book :) Rocky <>< www.HintsAndTips.com - Now with "Recommendation" postings www.MyQuickPoll.com - Now with Recent Poll List www.GotTheAnswerToSpam.com - Again :)
Actually it does have namespaces. The namespace is the filename (and foldernames if any) itself. For example, if you want to call function X in file mylib.py, you do this
import mylib mylib.X ()
or, similar to "using namespace" in C++, you can do this:from mylib import * (or from mylib import X) X()
You should have looked at this very elegant language more before tossing it out. It has all the feautures that anyone can want form a language. I dont think it lacks any features of C++ or Java or C#. It is much more pleasant to code in Python than to code in any other language in my opinion. It also have a very good integration with C++ and Java (Jython) - so you can write some parts of your code in C++/Java and some other parts in Python. The only thing that I dont like in Python is the lack of a good GUI framework. It supports wxWindows via wxPython, it also has support for Tk and Gtk I guess but none of these frameworks are really satisfactory in Windows - also they dont have a good GUI builder or an IDE that supports GUI stuff. Anyway, I have been using Python for quite some time and I really love this language. You should give it another try. Mustafa Demirhan http://www.macroangel.com
"What we do in life echoes in eternity" - Gladiator
It's not that I'm lazy, it's just that I just don't care -
I don't think namespaces are that important for scripting languages. You wouldn't want to use Python for a large-scale project anyway, because of its dynamic type system and poor performance.
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
Actually Python is not that bad in terms of performance. Generally, the tests show that its performance is close to Java's or C# performance. Also, you can write the performance critical parts of your program in C/C++. Its integration with C++ is sooo good that you can use the regular C++ classes in your Python program easily. Simply import the C++ DLL and then use the classes in the DLL like regular Python classes. Also, there are some very large projects written in Python (e.g. Zope). Python is quite useful for large scale projects too. Mustafa Demirhan http://www.macroangel.com
"What we do in life echoes in eternity" - Gladiator
It's not that I'm lazy, it's just that I just don't care -
Out of all the technology that is available... www.technewsworld.com/story/Google-Gaps-Leave-Search-Susceptible-37543.html[^] Rocky <>< www.HintsAndTips.com - Now with "Recommendation" postings www.MyQuickPoll.com - Now with Recent Poll List www.GotTheAnswerToSpam.com - Again :)
Did anyone try ironpython/[^]
-
Python is pretty slick, check out my blog to see some of it in action. - Nick Parker
My Blog | My ArticlesI really do hate the fact that indention is used to detect opening/closing blocks. -- Affordable Windows-based CMS: www.zeta-producer.de/enu
-
I really do hate the fact that indention is used to detect opening/closing blocks. -- Affordable Windows-based CMS: www.zeta-producer.de/enu
I completely agree, curly braces would have worked fine for me. - Nick Parker
My Blog | My Articles