473,772 Members | 2,478 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Announcing PyCs, a new Python-like language on .Net


This is an announcement of the beginning of development of a new
Python-like language called PyCs (pronounced "pie-cees"). Like IronPython,
PyCs will be Python on .Net but it will have more advanced features and
probably have higher performance due to a Psyco-like implementation
technique. See http://pycs.org.

PyCs is a fusion of Python and C#. It is the first Python-like dynamic
language with all the capabilities of C# including the capabilities of the
research language C-Omega (http://research.microsoft.com/Comega/) including
the X# language features
(http://www.cl.cam.ac.uk/%7Egmb/Paper...a-xml2003.html) that embed
XML/SQL support directly in the language. At the same time PyCs keeps all
the advantages of the Python language and the Python way.

PyCs will not be source compatible with either C# or Python but code could
be ported from either one easily.

PyCs is being developed by Mark Hahn who developed Prothon and PyCs grew
out of the initial efforts to port Prothon to .Net. For an explanation of
why the Prothon port to .Net turned into a whole new language, see
http://prothon.org/pycsnews.htm.

PyCs is just now starting development and will be developed using the same
XP-like language design process used to develop Prothon. This process will
use the PyCs mailing list to design the language where Mark acts as
moderator and implements the language in real-time as the ideas are worked
out. He will be working on PyCs full-time and drive the development just as
he did with Prothon.

Please join the PyCs team. The only effort involved is particpating in a
low-traffic, high-content, mailing list. You will be able to influence the
design of the latest and greatest dynamic language.

-- Mark Hahn, http://pycs.org

Jul 18 '05
26 2220
David M. Wilson wrote:
Mark Hahn <ma**@prothon.o rg> wrote in message news:<ma******* *************** *************** *@python.org>.. .

Please join the PyCs team. The only effort involved is particpating in a
low-traffic, high-content, mailing list. You will be able to influence the
design of the latest and greatest dynamic language.

Hi there. What are you trying to achieve? You have yet to complete
Prothon or even stabilise it for long enough to let me get a good
overview of it. Might I suggest you take a step back and actually
think about what you are doing rather than just implementing whatever
happens to be considered cool today.

Hear, hear.
Also judging by what I've seen of Prothon and read here, neither of
your proposed languages are either Python-like or related to this
group.
Well, I guess you have to try and garner support wherever you can.
Might I suggest you sit down with a paper and a pen and work out what
problem you are actually trying to solve, it is starting to get rather
embarrassing to watch the antics here. At the very least could you
spell check your postings before sending them.
Yup. One could take an announcement like this from someone like, say.
Jim Hugunin, who has a solid history of development of complete, working
systems. The suggestion that this effort might lead to something that
was "better" that Iron Python is ridiculous given that Prothon appears
to be merely "sound and fury, signifying nothing".
There are also much better forums to discuss language development on
than comp.lang.pytho n. Sorry for the flame, but you really need it.


It could have been a much worse flame and still justified. Mark should
gratefully take your advice.

regards
Steve

Jul 18 '05 #11
Mark Hahn wrote:
This is an announcement of the beginning of development of a new
Python-like language called PyCs (pronounced "pie-cees").


Reacting merely to the name, I'd say this smells "fishy". ;-)

(Non-English speakers, please note the winky and consider
homonyms with a sign of the Zodiac before saying I'm being rude.)

-Peter
Jul 18 '05 #12
>>>>> "Steve" == Steve Holden <sh*****@holden web.com> writes:
than comp.lang.pytho n. Sorry for the flame, but you really need it.


Steve> It could have been a much worse flame and still
Steve> justified. Mark should gratefully take your advice.

I dunno - Mark's general tone has been rather constructive, which is
not really flameworthy. It might be more useful if he, say, integrated
static typing from Boo to IronPython, but if someone is
enthusiasticall y (gotta admire Mark's energy) hacking on something
(anything) related to *Python codebase it can still be of interest to
people here - and it can also improve the codebase in the process.

--
Ville Vainio http://tinyurl.com/2prnb
Jul 18 '05 #13
On 29 Aug 2004 22:32:17 -0700, David M. Wilson wrote:
Mark Hahn <ma**@prothon.o rg> wrote in message news:<ma******* *************** *************** *@python.org>.. .
Please join the PyCs team. The only effort involved is particpating in a
low-traffic, high-content, mailing list. You will be able to influence the
design of the latest and greatest dynamic language.
Hi there. What are you trying to achieve? You have yet to complete
Prothon or even stabilise it for long enough to let me get a good
overview of it.


Their is a quite good tutorial that you could get an overview quite easily
from.
Might I suggest you take a step back and actually
think about what you are doing rather than just implementing whatever
happens to be considered cool today.
Did you actually read the news release explaining this action? Please get
the facts before judging.
Also judging by what I've seen of Prothon and read here, neither of
your proposed languages are either Python-like or related to this
group.
Tim Peters and Guido both disagree with you. They have both told me to
post here and keep the community informed of my work. They consider
Prothon a "sandbox" that Python can learn from.
Might I suggest you sit down with a paper and a pen and work out what
problem you are actually trying to solve, it is starting to get rather
embarrassing to watch the antics here. At the very least could you
spell check your postings before sending them.
I'm sorry, how did I embarrass you and what did I misspell?
There are also much better forums to discuss language development on
than comp.lang.pytho n.
Prothon and PyCs are discussed heavily on other forums. Dicussion here is
rare.
Sorry for the flame, but you really need it.


Exactly what are you accomplishing with this flame? It seems to me that
you are just showing your ignorance about Prothon and it's relationship to
the Python community.

Jul 18 '05 #14
On Sun, 29 Aug 2004 07:01:20 -0700, Tom B. wrote:
Python already does all the things that M*soft has tacked on in a kludgy
way, in a beautiful pythonic way. I have been using windows based machines
for a long time and in the language department (as well as others) M*soft
has been superceded by the open source community.


I would have agreed with you before I saw the details of the C-Omega
language. Check out this paper on how XML and SQL are handled directly in
the language:

http://www.cl.cam.ac.uk/%7Egmb/Paper...a-xml2003.html.

These features in a Python-like language will be awesome!

Jul 18 '05 #15
On 29 Aug 2004 19:58:53 -0700, Brian Almond wrote:
This is an announcement of the beginning of development of a new
Python-like language called PyCs (pronounced "pie-cees"). Like
IronPython,
PyCs will be Python on .Net but it will have more advanced features
and
probably have higher performance due to a Psyco-like implementation
technique. See http://pycs.org.


Here we go again ...


Is it time for an "interventi on" yet? :)


So you think I need a 12-step program for my language addiction? :-)

Jul 18 '05 #16
Mark Hahn <ma**@prothon.o rg> writes:
I would have agreed with you before I saw the details of the C-Omega
language. Check out this paper on how XML and SQL are handled directly in
the language:

http://www.cl.cam.ac.uk/%7Egmb/Paper...a-xml2003.html.


Yuck, Javascript handled those tasks just fine, it seemed to me.
Jul 18 '05 #17
On 01 Sep 2004 00:47:40 -0700, Paul Rubin wrote:
Mark Hahn <ma**@prothon.o rg> writes:
I would have agreed with you before I saw the details of the C-Omega
language. Check out this paper on how XML and SQL are handled directly in
the language:

http://www.cl.cam.ac.uk/%7Egmb/Paper...a-xml2003.html.


Yuck, Javascript handled those tasks just fine, it seemed to me.


Did you actually read the paper?
Jul 18 '05 #18
>>>>> "Mark" == Mark Hahn <ma**@prothon.o rg> writes:

Mark> On 01 Sep 2004 00:47:40 -0700, Paul Rubin wrote:
Mark Hahn <ma**@prothon.o rg> writes:
I would have agreed with you before I saw the details of the
C-Omega language. Check out this paper on how XML and SQL are
handled directly in the language:
Yuck, Javascript handled those tasks just fine, it seemed to me.


Mark> Did you actually read the paper?

And I'd like to ask whether you've checked out David Mertz's
gnosis.xml.obje ctify?

To me, X# seems mostly like naive buzzword chasing - or a research
project that exists because someone needed a research project.

If you want to do something that could be worthwhile to a larger
number of people, add static type declarations to IronPython. There
you could really be pioneering stuff that will be in py3k. X# sounds
more like perl7, with snowballs chance in hell of being adopted by any
future python iteration.

--
Ville Vainio http://tinyurl.com/2prnb
Jul 18 '05 #19
On 01 Sep 2004 23:38:52 +0300, Ville Vainio wrote:
>> "Mark" == Mark Hahn <ma**@prothon.o rg> writes:
Mark> On 01 Sep 2004 00:47:40 -0700, Paul Rubin wrote: >> Mark Hahn <ma**@prothon.o rg> writes: >>> I would have agreed with you before I saw the details of the
>>> C-Omega language. Check out this paper on how XML and SQL are
>>> handled directly in the language: >> Yuck, Javascript handled those tasks just fine, it seemed to me.

Mark> Did you actually read the paper?

And I'd like to ask whether you've checked out David Mertz's
gnosis.xml.obje ctify?

To me, X# seems mostly like naive buzzword chasing - or a research
project that exists because someone needed a research project.


X# seems like groundbreaking work to me. It reminds me of the utility of
regular expressions but for XML and SQL.
If you want to do something that could be worthwhile to a larger
number of people, add static type declarations to IronPython. There
you could really be pioneering stuff that will be in py3k.
PyCs DOES offer optional static type declarations and many other things
from "Python 3000". Check out the website.
X# sounds
more like perl7, with snowballs chance in hell of being adopted by any
future python iteration.


Don't forget that reular expressions were in Perl first also and they are
used heavily in Python.

Jul 18 '05 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1405
by: Tim Newsham | last post by:
Announcing: PyGgy v0.3 - http://www.lava.net/~newsham/pyggy/ Tim Newsham 2004 Jul 15 Public Domain ---[ Description PyGgy is a python package for generating parsers and lexers in python.
21
1285
by: Chris | last post by:
What IDE's do y'all recommend for Python? I'm using PythonWin atm, but I'd like something with more functionality. Chris
6
1673
by: DE | last post by:
Hello, Some long time ago, I used to use Tcl/Tk. I had an tcl embedded into my app. The coolest thing was however, I was able to attach to the interpreter (built in to my app) via a tcl shell in which I could type in regular tcl code which would be interpreted by the interpreter of my application. Naturally, it was possible to call tcl functions of my applications.
23
2565
by: anton.vredegoor | last post by:
Here's my situation: I'm typing this in a public library on a computer with OS windows 2000 server. I can run Internet explorer, word, excel and powerpoint, that's it. Maybe java, but it seems to be flaky. I want to run python scripts from this computer. At home I have a multi-computer network (from better times) but no internet access anymore, I could use this to try out solutions. I also have access to a friends computer which has...
0
1189
by: Steve R. Hastings | last post by:
xe.py is a Python module to make it very easy to work with XML. I have attempted to make xe classes very Pythonic and intuitive. xe is intended for working with structured XML, such as syndication feed files, but I have added some support for unstructured XML as well. Example: >>> import xe >>> bird = xe.TextElement("bird") >>> bird.attrs = "Norwegian Blue"
4
2582
by: Dave | last post by:
Powered by Mod_Python, Switch CSS is a full featured, production ready CSS preprocessor. Some of the features include: - variables - constants - selector prepending: #selector {
0
1729
by: Stephen Kellett | last post by:
Announcing Software Tools for Python We are pleased to inform you that we have completed the port and beta test of our Memory Analysis software tool to support Python. The software tools run on the Windows NT/2000/XP (and above) platforms. Python Memory Validator (a memory leak detection tool) http://www.softwareverify.com/python/memory/index.html The website provides 30 day evaluation versions of the software as well
0
1210
by: Anthony Baxter | last post by:
On behalf of the Python development team and the Python community, I'm announcing the release of Python 2.3.6 (release candidate 1). Python 2.3.6 is a security bug-fix release. While Python 2.5 is the latest version of Python, we're making this release for people who are still running Python 2.3. Unlike the recently released 2.4.4, this release only contains a small handful of security-related bugfixes. See the website for more.
0
1383
by: Kirill Simonov | last post by:
======================== Announcing PyYAML-3.06 ======================== A new bug fix release of PyYAML is now available: http://pyyaml.org/wiki/PyYAML Changes
0
9454
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10264
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10106
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9914
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8937
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7461
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6716
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5484
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2851
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.