[Python-3000] Nettri! The Open Source Python Web Application Platform

2008-08-29 Thread vin vin
Nettri! The Open Source Python Web Application Platform *Welcome to Nettri* HI Friends I am (*Vinoth*) very Glad to announce you the Development of *Nettri* an *Open Source Project for Python Web Application Platform*. Currently I am only the Developer. Sure I'll not wait for others to join, Bu

Re: [Python-3000] Nettri! The Open Source Python Web Application Platform

2008-08-29 Thread vin vin
Ah,, Forgot to tell.. *nettri.org * will be the official website of Nettri. On Fri, Aug 29, 2008 at 1:09 PM, vin vin <[EMAIL PROTECTED]> wrote: > Nettri! The Open Source Python Web Application Platform > > *Welcome to Nettri* > > HI Friends > > I am (*Vinoth*) very Glad to announce you the Dev

Re: [Python-3000] Nettri! The Open Source Python Web Application Platform

2008-08-29 Thread O.R.Senthil Kumaran
Hello Vinoth, Your broadcast was no better than a SPAM. This list is for discussing Python 3K efforts. python-announce list is better place when you have the finished product. python-list would be the place where you can seek guidance. Let us stop the thread here. Thanks, Senthil * scriptor vi

Re: [Python-3000] XML as bytes or unicode?

2008-08-29 Thread Stefan Behnel
Greg Ewing wrote: > Stefan Behnel wrote: > >> In the absence of information provided by an external transport >> protocol (e.g. >> HTTP or MIME), it is a fatal error for an entity including an encoding >> declaration to be presented to the XML processor in an encoding other >> than >> that named i

Re: [Python-3000] what version of bsddb to use/accept for 2.6/3.0

2008-08-29 Thread Trent Nelson
On Sun, Aug 24, 2008 at 06:15:06PM -0700, Neal Norwitz wrote: > It looks like the WIndows buildbots use 4.4.20. Unfortunately, the > Windows bots aren't in great shape either. It won't be that hard to bump 3.0 on Windows to use 4.7 (assuming that the 3.0 bsddb codebase has Jesus's new

[Python-3000] bytearray incompatible with bytes

2008-08-29 Thread Pyry Pakkanen
Hello list! First post. I ran in to this problem with ossaudiodev module when trying to copy the input audio to output: import ossaudiodev dev = ossaudiodev.open("rw") dev.setparameters(ossaudiodev.AFMT_S16_NE,2,44100) for i in range(1000): #Copy audio from input to output for a few seconds d

Re: [Python-3000] Nettri! The Open Source Python Web Application Platform

2008-08-29 Thread vin vin
Thank you Senthil for your Advice. First let me complete the solution. :) sorry for overtaking -- Vinoth ___ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailma

Re: [Python-3000] bytearray incompatible with bytes

2008-08-29 Thread Aahz
On Fri, Aug 29, 2008, Pyry Pakkanen wrote: > > It runs fine in 2.5 but in 3.0b3 it gives the following exception: > Traceback (most recent call last): > File "myscripts/ossthrough.py", line 5, in > dev.write(dev.read(1024)) > TypeError: write() argument 1 must be bytes or read-only buffer,

Re: [Python-3000] bytearray incompatible with bytes

2008-08-29 Thread Guido van Rossum
2008/8/29 Pyry Pakkanen <[EMAIL PROTECTED]>: > Hello list! First post. Welcome! > I ran in to this problem with ossaudiodev module when trying to copy > the input audio to output: > > import ossaudiodev > dev = ossaudiodev.open("rw") > dev.setparameters(ossaudiodev.AFMT_S16_NE,2,44100) > for i in