Re: [Python-Dev] introduction of __attribute__(deprecated) ?

2019-03-24 Thread Stéphane Wirtel
Thanks Victor, I have updated my PR with the Py_DEPRECATED macro. Le 24/03/19 à 23:07, Victor Stinner a écrit : > Le dim. 24 mars 2019 à 20:56, Stéphane Wirtel a écrit : >> So my question is, can we use/add __attribute__(deprecated) in our >> "development" kit? > > There is already Py_DEPRECATE

Re: [Python-Dev] introduction of __attribute__(deprecated) ?

2019-03-24 Thread Victor Stinner
Le dim. 24 mars 2019 à 20:56, Stéphane Wirtel a écrit : > So my question is, can we use/add __attribute__(deprecated) in our > "development" kit? There is already Py_DEPRECATED(VERSION_UNUSED) macro which uses __attribute__((__deprecated__)) on GCC >= 3.1. You can find the doc of a few macros in

Re: [Python-Dev] introduction of __attribute__(deprecated) ?

2019-03-24 Thread Stéphane Wirtel
And use an enumeration for the constants. For example: #include #include enum { PY_READWRITE = 0, PY_READONLY = 1, READONLY __attribute((deprecated("use PY_READONLY"))) = PY_READONLY, READWRITE __attribute((deprecated("use PY_READWRITE"))) = PY_READWRITE, }; Le 24/03/19 à 2

[Python-Dev] introduction of __attribute__(deprecated) ?

2019-03-24 Thread Stéphane Wirtel
Hi, I have created the issue https://bugs.python.org/issue36347 because I wanted to add a missing macro for the PyMemberDef.flags attribute. In the Modules/*.c files, we can find descriptions with PyMemberDef where the access flag has the 0 value. Example: static PyMemberDef members[] = { {

Re: [Python-Dev] Introduction

2012-08-02 Thread Xavier Morel
On 2012-08-02, at 09:28 , Shanth Kumar wrote: > Hi I am Shanthkumar from Bangalore, India, working for a software firm. > Good to see the mailing group, as i am new to python curious to ask you > people couple of queireis. I fear that is very likely the wrong mailing list for that: python-dev is

[Python-Dev] Introduction

2012-08-02 Thread Shanth Kumar
Hi I am Shanthkumar from Bangalore, India, working for a software firm. Good to see the mailing group, as i am new to python curious to ask you people couple of queireis. -- Regards..., Shanthkumara O.D. ___ Python-Dev mailing list Python-Dev@python.or

Re: [Python-Dev] Introduction and request for commit access to the sandbox.

2007-05-22 Thread Alexandre Vassalotti
On 5/21/07, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > > With that said, I would to request svn access to the sandbox for my > > work. I will use this access only for modifying stuff in the directory > > I will be assigned to. I would like to use the username "avassalotti" > > and the attached

Re: [Python-Dev] Introduction and request for commit access to the sandbox.

2007-05-20 Thread Martin v. Löwis
> With that said, I would to request svn access to the sandbox for my > work. I will use this access only for modifying stuff in the directory > I will be assigned to. I would like to use the username "avassalotti" > and the attached SSH2 public key for this access. I have added your key. As we ha

[Python-Dev] Introduction and request for commit access to the sandbox.

2007-05-20 Thread Alexandre Vassalotti
Hello, As some of you may already know, I will be working on Python for this year Google Summer of Code. My project is to merge the modules with a dual C and Python implementation, i.e. cPickle/pickle, cStringIO/StringIO and cProfile/profile [1]. This project is part of the standard library reorg

Re: [Python-Dev] Introduction

2007-03-09 Thread Georg Brandl
Žiga Seilnacht schrieb: > Hi all! > > I have just accepted an invitation to become a Python > developer, so I feel obliged to introduce myself. Welcome from me too! I was always pleased to see your name in some SF issue because it generally meant to look for high-quality comment or patch next to

Re: [Python-Dev] Introduction

2007-03-09 Thread Raymond Hettinger
[Žiga Seilnacht] >I have just accepted an invitation to become a Python >developer, so I feel obliged to introduce myself. Welcome aboard. Raymond ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsu

Re: [Python-Dev] Introduction

2007-03-09 Thread Brett Cannon
On 3/9/07, Žiga Seilnacht <[EMAIL PROTECTED]> wrote: > Hi all! > > I have just accepted an invitation to become a Python > developer, so I feel obliged to introduce myself. > > My name is Žiga Seilnacht. I'm currently studying civil > engineering at the University of Ljubljana, Slovenia. > Welcome

Re: [Python-Dev] Introduction

2007-03-09 Thread Guido van Rossum
On 3/9/07, Žiga Seilnacht <[EMAIL PROTECTED]> wrote: > Hi all! > > I have just accepted an invitation to become a Python > developer, so I feel obliged to introduce myself. Nice to meet you, Ziga! > My name is Žiga Seilnacht. I'm currently studying civil > engineering at the University of Ljublj

[Python-Dev] Introduction

2007-03-09 Thread Žiga Seilnacht
Hi all! I have just accepted an invitation to become a Python developer, so I feel obliged to introduce myself. My name is Žiga Seilnacht. I'm currently studying civil engineering at the University of Ljubljana, Slovenia. I started learning Python approximately two years ago, as my first compute