[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Project naming suggestions?

miller.paul.w

2/3/2008 6:18:00 PM

I'm considering writing a little interpreter for a python-like
language and I'm looking for name suggestions. :-)

Basically, I don't want to change a whole lot about Python. In fact,
I see myself starting with the compiler module from Python 2.5 and
building from there.

This language would be more or less "Python modulo a few
(incompatible) changes, but it'd be recognizable by Python
programmers. I'm talking about stuff like "allowing the character '?'
in identifier names," and "a better way to express 'for dummy in
xrange (n):' when the index isn't needed." I'd also like to
implement most of the planned Python 3000 changes.

Any suggestions? I'm thinking "Ophidian," for the snake connection,
or, possibly, "Circus," from "Monty Python's Flying Circus."

Thanks :-)
12 Answers

Wildemar Wildenburger

2/3/2008 7:36:00 PM

0

miller.paul.w@gmail.com wrote:
> I'm considering writing a little interpreter for a python-like
> language and I'm looking for name suggestions. :-)
>
How about "Whython"?

/W

miller.paul.w

2/3/2008 7:49:00 PM

0

On Feb 3, 2:36 pm, Wildemar Wildenburger
<lasses_w...@klapptsowieso.net> wrote:
> miller.pau...@gmail.com wrote:
> > I'm considering writing a little interpreter for a python-like
> > language and I'm looking for name suggestions. :-)
>
> How about "Whython"?
>
> /W

I like it. :P

If you were wondering why I was thinking of doing this project, the
reason is basically that I want to tinker with a programming language,
and Python is the one I know best. The fact that there is a compiler
module written in Python that I can modify is a huge plus. I don't
necessarily intend for anything in the language to be incorporated in
Python. I just see it as a playground type project.

Stefan Behnel

2/3/2008 8:35:00 PM

0

miller.paul.w@gmail.com wrote:
> I'm considering writing a little interpreter for a python-like
> language
[...]
> I'd also like to implement most of the planned Python 3000 changes.

In case you're interested in a real project, consider taking a look at Cython,
which is a Python-to-C compiler for writing C extension modules in a
Python-like language.

http://...

Stefan

alex23

2/4/2008 5:10:00 AM

0

I really like the Whython suggestion :)

Phil Hassey is currently working on a small python derivative called
tinypy. It's so recent I don't think he's gotten a project page up for
it, so you'd need to backtrack through his blog posts for an overview.
But as he's just done a _lot_ of what you're about to do, it would
make a great basis for prototyping your ideas.

Hope this helps.

-alex23

alex23

2/4/2008 7:50:00 AM

0

On Feb 4, 3:09 pm, alex23 <wuwe...@gmail.com> wrote:
> Phil Hassey is currently working on a small python derivative called
> tinypy.

Sorry, I meant to include a relevant link:

http://www.philhassey.com/blog/2008/01/31/tinypy-64k-boo...

-alex23

Kay Schluehr

2/4/2008 5:26:00 PM

0

On Feb 3, 7:17 pm, miller.pau...@gmail.com wrote:
> I'm considering writing a little interpreter for a python-like
> language and I'm looking for name suggestions. :-)
>
> Basically, I don't want to change a whole lot about Python. In fact,
> I see myself starting with the compiler module from Python 2.5 and
> building from there.
>
> This language would be more or less "Python modulo a few
> (incompatible) changes, but it'd be recognizable by Python
> programmers. I'm talking about stuff like "allowing the character '?'
> in identifier names," and "a better way to express 'for dummy in
> xrange (n):' when the index isn't needed." I'd also like to
> implement most of the planned Python 3000 changes.
>
> Any suggestions? I'm thinking "Ophidian," for the snake connection,
> or, possibly, "Circus," from "Monty Python's Flying Circus."
>
> Thanks :-)

What about "Argh!". Sounds like Paul Grahams Arc but is more Monty
Pythonesque than "Circus".

bruno.desthuilliers@gmail.com

2/4/2008 9:47:00 PM

0

On 4 fév, 18:26, Kay Schluehr <kay.schlu...@gmx.net> wrote:
> On Feb 3, 7:17 pm, miller.pau...@gmail.com wrote:
>
>
>
> > I'm considering writing a little interpreter for a python-like
> > language and I'm looking for name suggestions. :-)
>
> > Basically, I don't want to change a whole lot about Python. In fact,
> > I see myself starting with the compiler module from Python 2.5 and
> > building from there.
>
> > This language would be more or less "Python modulo a few
> > (incompatible) changes, but it'd be recognizable by Python
> > programmers. I'm talking about stuff like "allowing the character '?'
> > in identifier names," and "a better way to express 'for dummy in
> > xrange (n):' when the index isn't needed." I'd also like to
> > implement most of the planned Python 3000 changes.
>
> > Any suggestions? I'm thinking "Ophidian," for the snake connection,
> > or, possibly, "Circus," from "Monty Python's Flying Circus."
>
> > Thanks :-)
>
> What about "Argh!". Sounds like Paul Grahams Arc but is more Monty
> Pythonesque than "Circus".

Lol !

And +1, BTW

Neil Cerutti

2/5/2008 1:41:00 PM

0

On Feb 3, 2008 1:17 PM, <miller.paul.w@gmail.com> wrote:
> I'm considering writing a little interpreter for a python-like
> language and I'm looking for name suggestions. :-)
>
> Basically, I don't want to change a whole lot about Python. In fact,
> I see myself starting with the compiler module from Python 2.5 and
> building from there.
>
> This language would be more or less "Python modulo a few
> (incompatible) changes, but it'd be recognizable by Python
> programmers. I'm talking about stuff like "allowing the character '?'
> in identifier names," and "a better way to express 'for dummy in
> xrange (n):' when the index isn't needed." I'd also like to
> implement most of the planned Python 3000 changes.
>
> Any suggestions? I'm thinking "Ophidian," for the snake connection,
> or, possibly, "Circus," from "Monty Python's Flying Circus."

Given your stated goals, I like "Phyton."

--
Neil Cerutti <mr.cerutti+python@gmail.com>

Kay Schluehr

2/5/2008 7:04:00 PM

0

On 5 Feb., 14:41, "Neil Cerutti" <mr.ceru...@gmail.com> wrote:
> On Feb 3, 2008 1:17 PM, <miller.pau...@gmail.com> wrote:
>
>
>
> > I'm considering writing a little interpreter for a python-like
> > language and I'm looking for name suggestions. :-)
>
> > Basically, I don't want to change a whole lot about Python. In fact,
> > I see myself starting with the compiler module from Python 2.5 and
> > building from there.
>
> > This language would be more or less "Python modulo a few
> > (incompatible) changes, but it'd be recognizable by Python
> > programmers. I'm talking about stuff like "allowing the character '?'
> > in identifier names," and "a better way to express 'for dummy in
> > xrange (n):' when the index isn't needed." I'd also like to
> > implement most of the planned Python 3000 changes.
>
> > Any suggestions? I'm thinking "Ophidian," for the snake connection,
> > or, possibly, "Circus," from "Monty Python's Flying Circus."
>
> Given your stated goals, I like "Phyton."

I hear the masses chanting:

"Long live Phyton, down with Python!"

"More radical than Larry Wall!"



>
> --
> Neil Cerutti <mr.cerutti+pyt...@gmail.com>

Kay Schluehr

2/5/2008 7:04:00 PM

0

On 5 Feb., 14:41, "Neil Cerutti" <mr.ceru...@gmail.com> wrote:
> On Feb 3, 2008 1:17 PM, <miller.pau...@gmail.com> wrote:
>
>
>
> > I'm considering writing a little interpreter for a python-like
> > language and I'm looking for name suggestions. :-)
>
> > Basically, I don't want to change a whole lot about Python. In fact,
> > I see myself starting with the compiler module from Python 2.5 and
> > building from there.
>
> > This language would be more or less "Python modulo a few
> > (incompatible) changes, but it'd be recognizable by Python
> > programmers. I'm talking about stuff like "allowing the character '?'
> > in identifier names," and "a better way to express 'for dummy in
> > xrange (n):' when the index isn't needed." I'd also like to
> > implement most of the planned Python 3000 changes.
>
> > Any suggestions? I'm thinking "Ophidian," for the snake connection,
> > or, possibly, "Circus," from "Monty Python's Flying Circus."
>
> Given your stated goals, I like "Phyton."

I hear the masses chanting:

"Long live Phyton, down with Python!"

"More radical than Larry Wall!"



>
> --
> Neil Cerutti <mr.cerutti+pyt...@gmail.com>