Re: ANN: Pyrex 0.9.6.3

2007-10-19 Thread Greg Ewing
[EMAIL PROTECTED] wrote:

 Also, I noticed that if I try to download the testing framework, it
 gives me a 404.

That one is fixed now, if you want to try again.

--
Greg
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: ANN: Pyrex 0.9.6.3

2007-10-18 Thread kyosohma
On Oct 17, 4:12 am, Greg Ewing [EMAIL PROTECTED] wrote:
 Pyrex 0.9.6.3 is now available:

http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/

 Main features of this release:

* The C API now uses just one name in the module namespace,
  instead of a name per C function.

* The 'cdef' keyword and following extern/public/api qualifiers
  can be factored out of a group of declarations and made into
  a block header, e.g.

cdef public:
  int spam
  float ftang
  void tomato()

* A 3-argument form of the builtin getattr function has been
  added, called getattr3().

 What is Pyrex?
 --

 Pyrex is a language for writing Python extension modules.
 It lets you freely mix operations on Python and C data, with
 all Python reference counting and error checking handled
 automatically.

Did anyone else notice that the setup.py file is screwed up? Or that
the link on this guy's website for the Test Suite/Framework is broken?

Mike

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: ANN: Pyrex 0.9.6.3

2007-10-18 Thread David Tremouilles
Hello,

 Was about to report the same problem with setup.py.

Regards,

David

2007/10/18, [EMAIL PROTECTED] [EMAIL PROTECTED]:
 On Oct 17, 4:12 am, Greg Ewing [EMAIL PROTECTED] wrote:
  Pyrex 0.9.6.3 is now available:
 
 http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/
 
  Main features of this release:
 
 * The C API now uses just one name in the module namespace,
   instead of a name per C function.
 
 * The 'cdef' keyword and following extern/public/api qualifiers
   can be factored out of a group of declarations and made into
   a block header, e.g.
 
 cdef public:
   int spam
   float ftang
   void tomato()
 
 * A 3-argument form of the builtin getattr function has been
   added, called getattr3().
 
  What is Pyrex?
  --
 
  Pyrex is a language for writing Python extension modules.
  It lets you freely mix operations on Python and C data, with
  all Python reference counting and error checking handled
  automatically.

 Did anyone else notice that the setup.py file is screwed up? Or that
 the link on this guy's website for the Test Suite/Framework is broken?

 Mike

 --
 http://mail.python.org/mailman/listinfo/python-list

-- 
http://mail.python.org/mailman/listinfo/python-list


ANN: Pyrex 0.9.6.3

2007-10-17 Thread Greg Ewing
Pyrex 0.9.6.3 is now available:

   http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/

Main features of this release:

   * The C API now uses just one name in the module namespace,
 instead of a name per C function.

   * The 'cdef' keyword and following extern/public/api qualifiers
 can be factored out of a group of declarations and made into
 a block header, e.g.

   cdef public:
 int spam
 float ftang
 void tomato()

   * A 3-argument form of the builtin getattr function has been
 added, called getattr3().


What is Pyrex?
--

Pyrex is a language for writing Python extension modules.
It lets you freely mix operations on Python and C data, with
all Python reference counting and error checking handled
automatically.
-- 
http://mail.python.org/mailman/listinfo/python-list