Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Ask Guido van Rossum

Posted by Roblimo on Tue Apr 17, 2001 11:00 AM
from the land-of-the-pythons dept.
This week's interview is with Guido van Rossum, a man who, as they say, needs no introduction. (Not around here, at least.) To learn a bit more about him, check his personal page. You might want to ask him about Python 2.1, which was released today. One question per person, please. We'll send 10 of the highest-moderated ones to Guido about 24 hours after this post went up, and will run his answers as soon as he gets them back to us.
This discussion has been archived. No new comments can be posted.
Ask Guido van Rossum | Log In/Create an Account | Top | 202 comments (Spill at 50!) | Index Only | Search Discussion
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
(1) | 2 | 3
  • Re:Language Specification by Anonymous Coward (Score:1) Tuesday April 17 2001, @12:49PM
  • by abischof (255) <alex@spa m c o p . net> on Tuesday April 17 2001, @07:33AM (#285871) Homepage
    Considering that you named the language after the comedy troupe, what's your favourite Monty Python sketch? Personally, my favourite is the lecture on sheep aircraft [montypython.net], but I suppose that's a discussion for another time ;).

    Alex Bischoff
    ---
  • Re:Python 3000 by cduffy (Score:2) Tuesday April 17 2001, @10:31AM
  • Re:Performance by Ian Bicking (Score:2) Tuesday April 17 2001, @12:56PM
  • Re:does Python need a CPAN? by Ian Bicking (Score:2) Tuesday April 17 2001, @01:12PM
  • Do you believe in Object Oriented Programming? by defile (Score:2) Tuesday April 17 2001, @09:42AM
  • He didn't. by Alan Daniels (Score:1) Friday April 20 2001, @09:55AM
  • Re:Performance by diaphanous (Score:1) Tuesday April 17 2001, @04:02PM
  • Re:Indentation? by Jason Earl (Score:2) Tuesday April 17 2001, @10:17AM
  • Incompability w/ GNU GPL: Any chance to resolve it by juhtolv (Score:1) Tuesday April 17 2001, @10:24AM
  • garbage collection and Python by Panix (Score:1) Tuesday April 17 2001, @12:44PM
  • standard packages and organization by Panix (Score:1) Tuesday April 17 2001, @12:59PM
  • Other languages by NewWazoo (Score:2) Tuesday April 17 2001, @07:02AM
  • Python directions by getafix (Score:1) Tuesday April 17 2001, @07:39AM
  • Re:Data Structures Library by AMK (Score:2) Tuesday April 17 2001, @11:21AM
  • Re:Garbage Collection by AMK (Score:2) Tuesday April 17 2001, @11:25AM
  • Stackless Python? (Score:4)

    by Tumbleweed (3706) on Tuesday April 17 2001, @07:49AM (#285886) Homepage
    Do you have any plans to merge Stackless Python with Python? If yes, when? If not, why not?
  • Re:Komodo by crisco (Score:2) Tuesday April 17 2001, @10:45AM
  • Re:Indentation? by andrew cooke (Score:1) Tuesday April 17 2001, @12:16PM
  • Re:Ruby by Luke (Score:1) Tuesday April 17 2001, @11:31AM
  • Re:Ruby by Luke (Score:1) Tuesday April 17 2001, @12:18PM
  • Ruby (Score:5)

    by Luke (7869) on Tuesday April 17 2001, @07:10AM (#285891)
    Thoughts on Ruby?
  • Getting your company to use Python vs. ... by buffy (Score:1) Tuesday April 17 2001, @08:33AM
  • Emacs, Python, and Tabs by Anonymous Coed (Score:1) Tuesday April 17 2001, @03:35PM
  • Thoughts on US vs Europe? by hanwen (Score:1) Tuesday April 17 2001, @02:20PM
  • microthreads, stackless python by XNormal (Score:2) Tuesday April 17 2001, @09:56PM
  • Why is Python not whitespace-ignorant? by dido (Score:1) Tuesday April 17 2001, @05:41PM
  • Conflict with GPL (Score:5)

    by MAXOMENOS (9802) <maxomai@gmail.COUGARcom minus cat> on Tuesday April 17 2001, @08:04AM (#285897) Homepage
    The Free Software foundation mentions the license that comes with Python versions 1.6b1 and later as being incompatible with the GPL. In particular they have this to say about it:

    This is a free software license but is incompatible with the GNU GPL. The primary incompatibility is that this Python license is governed by the laws of the "State" of Virginia in the USA, and the GPL does not permit this.

    So, my question is a two parter:

    1. What was your motivation for saying that Python's license is governed by the laws of Virginia?
    2. Is it possible that a future Python license could be GPL-compatible again?


    ObJectBridge [sourceforge.net] (GPL'd Java ODMG) needs volunteers.
  • Re:Python 3000 by Xar (Score:1) Tuesday April 17 2001, @10:18AM
  • Re:Python 3000 by Xar (Score:1) Wednesday April 18 2001, @06:18AM
  • Re:Python 3000 by Xar (Score:1) Wednesday April 18 2001, @06:24AM
  • Python 3000 (Score:5)

    by Xar (11113) on Tuesday April 17 2001, @08:09AM (#285901) Homepage
    It's been a while since I've seen any mention of Python 3000--aside from the recent April Fools joke, that is. I love Python as a language, and use it both professionally and personally. But, Python's current implementation is lacking; the interpreter is not multi-threaded, causing large Python applications (such as Zope) to implement various workarounds that only partly address the problem; and the C API is rather...unpleasant. Working with the Tcl C API in an embedding situation is much, much better, IMO. Will Python 3000 address any of these concerns? Any information on a timeline, or current status?
  • Why do you care so much for GPL compatibility? by Carl (Score:1) Tuesday April 17 2001, @07:45AM
  • How will nested scopes affect performance? by MSG (Score:2) Tuesday April 17 2001, @11:29AM
  • Structured Design. (Score:5)

    by Xerithane (13482) <xerithane&nerdfarm,org> on Tuesday April 17 2001, @08:06AM (#285904) Homepage Journal
    First off, as a disclaimer I have never actually written anything in Python. But, I have read up on virtually all the introduction articles and tutorials so I have a grasp on syntax and structure.

    I have been doing C development for 9 years now, and I know a plethora of other languages including shell scripting, perl, PHP (for scripts). Now, each language uses 'normal' grouping for control structures (if, for, etc).

    What was the logic behind creating a whitespace-based syntax rule? And why do you feel it is good, please refrain from the readability answer because that is all I get from those people I know who know Python.

    I find, because of my background, it is much easier to read code that uses braces ({}) than whitespace because my mind automatically looks for them. After maintaining legacy code that extends a life span of 20 years from it's first line of code, I have some concerns about the longevity of any Python code. So, my second question is, how well do you see Python holding up for 20 years and why do you think it will hold up that long?

    Thanks.

  • Why such weak lambdas? by nosferatu-man (Score:1) Tuesday April 17 2001, @08:08PM
  • Re:Jython by nosferatu-man (Score:1) Tuesday April 17 2001, @08:10PM
  • Re:Python's 2 biggest shortfalls by nosferatu-man (Score:1) Tuesday April 17 2001, @08:18PM
  • Re:Language Specification by Grey (Score:1) Tuesday April 17 2001, @03:10PM
  • Re:Structured Design. by NMerriam (Score:2) Tuesday April 17 2001, @09:35AM
  • Re:Structured Design. by jekk (Score:1) Tuesday April 17 2001, @11:16AM
  • GUI? Tkinter? (Score:3)

    by Lumpish Scholar (17107) on Tuesday April 17 2001, @09:07AM (#285911) Homepage Journal
    (It has to be asked every once in a while.)

    Any movement away from Tkinter, and toward something else, as the pretty-much-standard programming interface for graphical user interfaces?

    Any movement towards a Tk library that *doesn't* use Tcl?
  • Scare Quotes by Nightpaw (Score:1) Tuesday April 17 2001, @05:06PM
  • Hi, I've never heard of you by Migrant Programmer (Score:1) Tuesday April 17 2001, @07:21AM
  • Re:Performance by nd (Score:1) Tuesday April 17 2001, @08:09AM
  • Legacy vs. Ease and Cleanliness by JohnZed (Score:2) Tuesday April 17 2001, @11:45AM
  • Re:Performance by listen (Score:1) Tuesday April 17 2001, @07:43AM
  • Ruby by jilles (Score:2) Tuesday April 17 2001, @08:26AM
  • Re:Structured Design. by ChadN (Score:2) Tuesday April 17 2001, @10:50AM
  • Python and UML by Rocky Mudbutt (Score:2) Tuesday April 17 2001, @07:45AM
  • macro viruses by Dr. Tom (Score:2) Tuesday April 17 2001, @06:48PM
  • Re:Data Structures Library by churchr (Score:1) Tuesday April 17 2001, @08:07AM
  • Re:Python and Tabs by rhaig (Score:1) Tuesday April 17 2001, @12:53PM
  • Blind people? by rhaig (Score:2) Tuesday April 17 2001, @10:23AM
  • Re:Conflict with GPL by maw (Score:2) Tuesday April 17 2001, @01:42PM
  • Re:does Python need a CPAN? by pthisis (Score:1) Tuesday April 17 2001, @07:59AM
  • Re:Komodo by Pengo (Score:2) Tuesday April 17 2001, @10:15AM
  • Python IDE (Score:3)

    by Pengo (28814) on Tuesday April 17 2001, @07:18AM (#285927) Journal
    Do you know if there are any projects on it's way to compete with Kylx or Visual Basic based on Python.


    --------------------
    Would you like a Python based alternative to PHP/ASP/JSP?
  • Performance (Score:4)

    by debrain (29228) on Tuesday April 17 2001, @07:16AM (#285928) Journal
    Is it possible to make Python as fast as C/C++? In particular, is there a way to compile Python into system code (as opposed to byte code)? If there isn't, will there ever be?
  • Re:Python directions by jonathan_ingram (Score:1) Tuesday April 17 2001, @08:35AM
  • Re:Structured Design. by jonathan_ingram (Score:1) Tuesday April 17 2001, @09:38AM
  • Re:Python and Tabs by jonathan_ingram (Score:1) Tuesday April 17 2001, @11:39AM
  • Re:Python and Tabs by jonathan_ingram (Score:1) Tuesday April 17 2001, @11:41AM
  • Re:Python and Tabs by jonathan_ingram (Score:1) Tuesday April 17 2001, @03:31PM
  • Re:self by Patrick Lewis (Score:1) Tuesday April 17 2001, @02:03PM
  • Thoughts about REBOL? by netless (Score:1) Tuesday April 17 2001, @08:49AM
  • Re:Indentation? by Mickut (Score:1) Wednesday April 18 2001, @07:41AM
  • Re:Structured Design. by ianezz (Score:1) Tuesday April 17 2001, @11:23AM
  • Re:Structured Design. by ianezz (Score:1) Friday April 20 2001, @01:44AM
  • Re:Did you approve of the Parrot joke? by cmg (Score:1) Tuesday April 17 2001, @07:20AM
  • Re:Structured Design. by Valdrax (Score:2) Wednesday April 18 2001, @09:12AM
  • Re:Why is Python not whitespace-ignorant? by Valdrax (Score:2) Wednesday April 18 2001, @11:21AM
  • by Valdrax (32670) on Tuesday April 17 2001, @10:09AM (#285942)
    What was the logic behind creating a whitespace-based syntax rule? And why do you feel it is good, please refrain from the readability answer because that is all I get from those people I know who know Python.

    I fail to see why there would be any other reason. Furthermore, I fail to see why there should even need to be a better reason. Why do you have whitespace at all? There are only 2 real answers: easy parser writing and human readability.

    Python's style makes it easy to see blocks of logic. It also forces you to think about how your code is organized by exposing these blocks to you at all times. Braces, parentheses, brackets, etc. are easy to lose track of in complex single-line statements. You have to spend too much time thinking about whether or not you've got your puncuation matched up properly. Python eliminates this confusion by exposing logical blocks. Besides, properly formatted and readable C code should already be spaced out like a Python program. Python just eliminates the redundant punctuation.

    Typically, the people who complain the loudest about enforcing spacing in syntax are the same people who write those tangled, dense, single-line statements in C and Perl that inspired their respected obfuscated code contests. You don't need the ability to cram 5 lines of Python in 1 line of Perl. It just hurts maintainability, and there's really no compelling argument for keeping source code dense and compact anymore if it doesn't add speed and remove bloat. (Forgive me if I have unfairly tarred you with this brush, but this has been my general experience.)

    (In response to another post:)
    Also, I've never seen a source-control system mess with the spacing of a file before. That's just odd. Be consistent with using either spaces OR tabs and your Python code will be much easier to store. I'm not saying it doesn't happen. I'm just saying that bugs in certain tools that weren't written with Python in mind shouldn't be a black mark against the whole language.
  • Implementing Everything in Python by jfunk (Score:2) Tuesday April 17 2001, @08:32AM
  • What use of Python have you found that surprised you the most, that gave you the strongest "I can't believe they did that" reaction?

  • Re:Performance by segmond (Score:2) Tuesday April 17 2001, @08:38AM
  • Re:efficient compilation and standardization by segmond (Score:2) Tuesday April 17 2001, @08:41AM
  • Re:Python 3000 by segmond (Score:2) Tuesday April 17 2001, @08:43AM
  • Re:Data Structures Library by segmond (Score:2) Tuesday April 17 2001, @08:46AM
  • Re:[j | c]Python by segmond (Score:2) Tuesday April 17 2001, @09:31AM
  • Re:Conflict with GPL by segmond (Score:2) Tuesday April 17 2001, @09:33AM
  • Re:Stackless Python? by segmond (Score:2) Tuesday April 17 2001, @09:35AM
  • self by segmond (Score:2) Tuesday April 17 2001, @09:39AM
  • wxPython (Score:3)

    by segmond (34052) on Tuesday April 17 2001, @09:41AM (#285953)
    Is there any plan to adopt wxPython (www.wxpython.org) as the GUI standard? The Tk interface looks butt ugly, and I am sure you have heard that many times, what do you see as the advantages and disadvatages for using wxPython over Tinker?

  • Remapping % in Vim by khslinky (Score:1) Tuesday April 17 2001, @11:50AM
  • Re:Remapping % in Vim by khslinky (Score:1) Tuesday April 17 2001, @11:53AM
  • Re:Other languages by mixmasta (Score:1) Tuesday April 17 2001, @11:46PM
  • Jython and Serious Tool Support by nawkboy (Score:1) Tuesday April 17 2001, @09:17PM
  • Re:Language Specification by steve9000 (Score:1) Wednesday April 18 2001, @02:46AM
  • Every language needs a CPAN. by Malcontent (Score:2) Tuesday April 17 2001, @10:29PM
  • Re:Structured Design. by Malcontent (Score:2) Tuesday April 17 2001, @10:36PM
  • Re:Structured Design. by Malcontent (Score:2) Wednesday April 18 2001, @07:17PM
  • Practical Vs. Ideal by xeer0 (Score:1) Tuesday April 17 2001, @09:13AM
  • Komodo by wiredog (Score:2) Tuesday April 17 2001, @07:23AM
  • [j | c]Python (Score:5)

    by seanw (45548) on Tuesday April 17 2001, @07:15AM (#285964)

    How do you see the relationship between jPython (the java implementation) and standard cPython (the original C language version) evolving? And do you see the advantages of either one (i.e. portability vs. speed) becoming especially pronounced in light of the recent trend toward distributed software (ala the MS .NET initiative)?

    sean
  • Question by NullGrey (Score:1) Tuesday April 17 2001, @12:16PM
  • Re:Structured Design. by kubalaa (Score:1) Tuesday April 17 2001, @10:27PM
  • Licensing issues by jameson (Score:1) Tuesday April 17 2001, @07:33AM
  • Re:Conflict with GPL by jameson (Score:1) Tuesday April 17 2001, @09:45AM
  • Re:Structured Design. by jameson (Score:1) Tuesday April 17 2001, @11:32AM
  • Re:Python by questionlp (Score:1) Tuesday April 17 2001, @08:39AM
  • Re:Language Specification by smallpaul (Score:1) Wednesday April 18 2001, @12:29AM
  • Re:Python 3000 by smallpaul (Score:1) Wednesday April 18 2001, @12:34AM
  • Re:Structured Design. by smallpaul (Score:1) Wednesday April 18 2001, @01:48AM
  • Static typing by Peter Eckersley (Score:2) Tuesday April 17 2001, @09:36PM
  • Why "None"? (Score:3)

    by po_boy (69692) on Tuesday April 17 2001, @07:08AM (#285975) Homepage
    First, thanks for Python!

    I have long wondered why the value None in python is named "None". It's pretty common in other languages to call that thing (or something very similar) "NULL". Were you trying to differentiate None and NULL in some way, or do you just like the way "None" sounds as you read code?

  • by po_boy (69692) on Tuesday April 17 2001, @07:25AM (#285976) Homepage
    One of the reasons I still write some things in PERL is because I know that I can find and install about a zillion modules quickly and easily through the CPAN repository and CPAN module. I'm pretty sure that if Python had something similar, like the Vaults of Parnassus [vex.net] but more evolved that I would abandon PERL almost entirely.

    Do you see things in a similar way? If so, why has Python not evolved something similar or better, and what can I do to help it along in this realm?

  • Politeness by eAndroid (Score:2) Tuesday April 17 2001, @07:46AM
  • Honestly, now by Devil's Avocado (Score:2) Tuesday April 17 2001, @09:26AM
  • Re:Perl? Bah! by Camel Pilot (Score:1) Tuesday April 17 2001, @08:23AM
  • where did you get those glasses? by JEDi_ERiAN (Score:1) Tuesday April 17 2001, @09:08AM
  • Re:Development of Language Bindings by Danh (Score:1) Tuesday April 17 2001, @12:36PM
  • by Rexifer (81021) on Tuesday April 17 2001, @07:15AM (#285982)
    How closely does the primary Python development team interact with the other language binding efforts (mainly Jython)? Anyone who's hung out in Slashdot seems to have a rabid attachment towards their native tounge, so to speak, and I've found it refreshing that the Python community "plays nice". Is there a lot of cross-pollenation(sic) between the groups?

    Thanks.
  • Video Interview by mccormi (Score:1) Tuesday April 17 2001, @07:48AM
  • Garbage Collection by Fnordulicious (Score:1) Tuesday April 17 2001, @09:26AM
  • Metaobject Protocol? by Fnordulicious (Score:1) Wednesday April 18 2001, @04:29PM
  • Boa Constructor! by Choron (Score:1) Tuesday April 17 2001, @06:39PM
  • Re:Data Structures Library by GrEp (Score:1) Tuesday April 17 2001, @09:52AM
  • Re:Data Structures Library by GrEp (Score:2) Tuesday April 17 2001, @10:09AM
  • by GrEp (89884) <.crb002. .at. .iastate.edu.> on Tuesday April 17 2001, @07:15AM (#285989) Homepage Journal
    I love python for making quick hacks, but the one thing that I haven't seen is a comprehensive data structures library. Is their one in development that you would like to comment about or point us to?

    bash-2.04$
  • Python's 2 biggest shortfalls by brunson (Score:1) Tuesday April 17 2001, @07:39AM
  • Re:Python directions by brunson (Score:1) Tuesday April 17 2001, @07:48AM
  • mod this up up up by vio (Score:1) Tuesday April 17 2001, @03:11PM
  • Re:Conflict with GPL by bobv-pillars-net (Score:1) Tuesday April 17 2001, @08:34PM
  • Re:State vs. Commonwealth by bobv-pillars-net (Score:1) Wednesday April 18 2001, @09:26AM
  • Re:Python's Relation to Knuth's Conjecture by OmegaDan (Score:2) Tuesday April 17 2001, @07:51AM
  • Re:Python's Relation to Knuth's Conjecture by OmegaDan (Score:2) Tuesday April 17 2001, @02:34PM
  • Seemless GUI please. by supersnail (Score:1) Wednesday April 18 2001, @06:58AM
  • Re:Language Specification by patnotz (Score:1) Tuesday April 17 2001, @04:37PM
  • by patnotz (112592) on Tuesday April 17 2001, @07:27AM (#285999) Homepage
    While I love many things about python, one thing bothers me. It seems that it's the interpreter that defines the language rather than a language defining how the interpreter should act. One example is the "++", "--" etc. operators and another is the functionality path module. I often write scripts with 2.0 at work only to find thy don't run on my Debian 2.2 system at home (stable Debian's python is 1.5.2).

    Are there any plans to set some kind of standard language specification that will hold for a while?

  • Fat snakes don't hunt by graybeard (Score:2) Tuesday April 17 2001, @08:40AM
  • Python GUI by Cowboy Bill (Score:1) Tuesday April 17 2001, @05:11PM
  • Python Bytecode interpreter by Cowboy Bill (Score:1) Tuesday April 17 2001, @05:15PM
  • Python's Relation to Knuth's Conjecture by matroid (Score:2) Tuesday April 17 2001, @07:47AM
  • There are a lot of "golden Python rules" or whatever you would call them, like "explicit is better than implicit", "there should be only one way to do it", that sort of thing. As far as I know, those are from old posts to the mailing list, often by Tim Peters, and they've become The Law afterwards. In the great tradition of Usenet advocacy, people who suggest things that go against these rules are criticized. But looking at Python, I see a lot more pragmatism, not rigid rules. What do you think of those "golden rules" as they're written down?

    What's your idea of the future of Python? Since the PEP process, a lot of new feature ideas have been put forward, and a lot of people feel uncomfortable with quick change to a good language (Python 2.1 is again excellent though, congrats). Do you think or hope Python will be finished one day? If not, isn't the alternative an endless string of added features? "Python 3000" was an idea of a sort of ideal Python that would be worked on, but as I understand Python will now evolve more gradually.

  • Re:Performance by StandardDeviant (Score:1) Tuesday April 17 2001, @08:20AM
  • Jython by Scrymarch (Score:1) Tuesday April 17 2001, @01:14PM
  • More follow up by Scrymarch (Score:1) Tuesday April 17 2001, @01:22PM
  • Re:Favourite Python sketch? by e-Motion (Score:1) Tuesday April 17 2001, @02:32PM
  • Re:Structured Design. by milesegan (Score:1) Wednesday April 18 2001, @01:26PM
  • Re:Python by Goldberg's Pants (Score:1) Tuesday April 17 2001, @05:39PM
  • Re:Perl by Goldberg's Pants (Score:1) Tuesday April 17 2001, @05:44PM
  • What is bad about python ? by gsf (Score:2) Tuesday April 17 2001, @11:48AM
  • Which "perfect couple" (views on OCaml/Python)? by kalifa (Score:1) Tuesday April 17 2001, @09:16AM
  • Future of CP4E (Computer Programming For Everyone) by bastia (Score:1) Tuesday April 17 2001, @05:20PM
  • Why not Parrot? by ellem (Score:1) Tuesday April 17 2001, @04:36PM
  • Re:A threat? by NoahSpurrier (Score:1) Tuesday April 17 2001, @12:04PM
  • Re:Did you approve of the Parrot joke? by cmat (Score:1) Tuesday April 17 2001, @07:27AM
  • Design thoughts... by cmat (Score:1) Tuesday April 17 2001, @07:31AM
  • Python v. Perl by TheLocustNMI (Score:1) Tuesday April 17 2001, @07:19AM
  • Indentation? by fm6 (Score:2) Tuesday April 17 2001, @08:24AM
  • Re:Remapping % in Vim by fm6 (Score:2) Tuesday April 17 2001, @11:59AM
  • Follow-up Questions by FortKnox (Score:2) Tuesday April 17 2001, @07:38AM
  • Re:More follow up by Abreu (Score:1) Wednesday April 18 2001, @12:46AM
  • Re:Politeness - MOD THIS UP!! by Abreu (Score:1) Wednesday April 18 2001, @01:09AM
  • Re:Structured Design. by Abreu (Score:1) Wednesday April 18 2001, @01:43AM
  • Re:Perl by SimHacker (Score:1) Tuesday April 17 2001, @02:58PM
  • Python for AI programming by SimHacker (Score:1) Tuesday April 17 2001, @03:42PM
  • Re:Python's 2 biggest shortfalls by SimHacker (Score:1) Tuesday April 17 2001, @04:28PM
  • python versus perl by sv0f (Score:2) Tuesday April 17 2001, @08:56AM
  • Re:Language Specification by xehprom (Score:1) Tuesday April 17 2001, @02:00PM
  • Type Checking by DawnHorse (Score:1) Tuesday April 17 2001, @12:34PM
  • Re:Language Specification by shredwheat (Score:1) Tuesday April 17 2001, @04:08PM
  • Can we get rid of the underscores? by darekana (Score:1) Wednesday April 18 2001, @12:16AM
  • Re:Structured Design. by CoreyG (Score:1) Tuesday April 17 2001, @02:00PM
  • Python by Floyd Tante (Score:2) Tuesday April 17 2001, @07:04AM
  • Re:Python by BlowCat (Score:2) Tuesday April 17 2001, @08:38AM
  • Re:why do Brits think Python is funny? by wadetemp (Score:1) Tuesday April 17 2001, @08:10AM
  • If you were stuck on a desert island... by wadetemp (Score:2) Tuesday April 17 2001, @07:30AM
  • Parrot and 3D by ahfoo (Score:1) Wednesday April 18 2001, @07:07AM
  • How closely does the primary Python development team interact with the other language binding efforts (mainly Jython)? Anyone who's hung out in Slashdot seems to have a rabid attachment towards their native tounge, so to speak, and I've found it refreshing that the Python community "plays nice". Is there a lot of cross-pollenation(sic) between the groups?


    Yours,
    Bob
  • Will it every be C++Python? by jbarham (Score:1) Tuesday April 17 2001, @05:46PM
  • Re:Conflict with GPL by gunga (Score:1) Tuesday April 17 2001, @09:52AM
  • Re:Did you approve of the Parrot joke? by GTRacer (Score:1) Tuesday April 17 2001, @07:25AM
  • Power Systems by GTRacer (Score:1) Tuesday April 17 2001, @07:30AM
  • Re:Oy, it hurts by MaxQuordlepleen (Score:1) Tuesday April 17 2001, @08:10AM
  • Re:Structured Design. by smitty_one_each (Score:1) Tuesday April 17 2001, @03:33PM
  • Perl by ConsumedByTV (Score:1) Tuesday April 17 2001, @07:08AM
  • BeOpen.com by RussP (Score:1) Tuesday April 17 2001, @08:22AM
  • Re:BeOpen.com by RussP (Score:1) Tuesday April 17 2001, @12:54PM
  • Does Python have too frequent revisions? by Bo Vandenberg (Score:1) Tuesday April 17 2001, @07:10PM
  • Guido Hatzis by noz (Score:1) Tuesday April 17 2001, @07:23AM
  • Re:Why "None"? by Phredward (Score:1) Tuesday April 17 2001, @10:50AM
  • Python evolution by IanA (Score:1) Tuesday April 17 2001, @07:07AM
  • Did you approve of the Parrot joke? by typical geek (Score:1) Tuesday April 17 2001, @07:11AM
  • Python and .NET by bryanbrunton (Score:1) Tuesday April 17 2001, @01:23PM
  • Re:Python GUI by ewestra (Score:1) Wednesday April 18 2001, @05:39PM
  • Why have only one "official" GUI toolkit? by ewestra (Score:1) Wednesday April 18 2001, @06:17PM
  • Suitable for what in 5 years? by sam_penrose (Score:1) Tuesday April 17 2001, @08:17AM
  • Python in education by sam_penrose (Score:1) Tuesday April 17 2001, @08:23AM
  • Most needed contribution? by sam_penrose (Score:1) Tuesday April 17 2001, @08:25AM
  • Re:Structured Design. by sam_penrose (Score:1) Tuesday April 17 2001, @09:00AM
  • Re:What is *your* idea of Python and its future? by sam_penrose (Score:2) Tuesday April 17 2001, @08:47AM
  • Support? by Tsar cr0bar (Score:1) Tuesday April 17 2001, @07:55AM
  • Array slicing.. by dmouritsendk (Score:1) Tuesday April 17 2001, @08:02AM
  • by janpod66 (323734) on Tuesday April 17 2001, @07:35AM (#286065)
    What are the plans for the compilation of Python code to efficient executables? Python's object system is very dynamic, allowing anybody to add instance variables and methods to any object at any time--how are you planning on dealing with that during compilation? Performance-wise, how do you expect Python will compare to compiled CommonLisp or Smalltalk, which evolved along similar lines 20 years ago? And will there be a language standard, or will Python continue to be defined by what the C implementation does?
  • Python wasn't designed for performance... by oodl (Score:1) Wednesday April 18 2001, @07:18PM
  • Will TK still be the standard ? by makapuf (Score:1) Tuesday April 17 2001, @11:55PM
  • Re:Conflict with GPL by Spooge Demon (Score:2) Tuesday April 17 2001, @11:07AM
  • Re:Structured Design. by crealf (Score:1) Wednesday April 18 2001, @02:50AM
  • Re:Structured Design. by crealf (Score:1) Wednesday April 18 2001, @03:07AM
  • Re:Structured Design. by crealf (Score:1) Wednesday April 18 2001, @03:19AM
(1) | 2 | 3