This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: unnecessary static variable
Type: Stage:
Components: Interpreter Core Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: gvanrossum Nosy List: gvanrossum, nnorwitz
Priority: normal Keywords:

Created on 2002-08-16 03:32 by nnorwitz, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Messages (2)
msg12019 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-08-16 03:32
In typeobject.c:1011 (in type_new), buffer is static. 
It doesn't seem to need to be static as it's only
passed to Py_Mangle().
msg12020 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2002-08-16 03:48
Logged In: YES 
user_id=6380

Oops, thanks, fxed! I don't know what I was thinking.
History
Date User Action Args
2022-04-10 16:05:36adminsetgithub: 37045
2002-08-16 03:32:11nnorwitzcreate