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: Minor comment error in configure.in ("malloc support" appears twice)
Type: Stage:
Components: Interpreter Core Versions: Python 3.1, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: dmalcolm, georg.brandl
Priority: low Keywords:

Created on 2010-03-11 15:53 by dmalcolm, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg100869 - (view) Author: Dave Malcolm (dmalcolm) (Python committer) Date: 2010-03-11 15:53
A minor nit: configure.in has this comment twice:
"Check for Python-specific malloc support"

c.f.:

# Check for Python-specific malloc support
AC_MSG_CHECKING(for --with-tsc)

(snip)

# Check for Python-specific malloc support
AC_MSG_CHECKING(for --with-pymalloc)



Clearly the first one should read something like:
# Determine if the bytecode evaluation loop should be instrumented using the CPU timestamp-counter
or somesuch.

Seems to affect both trunk and py3k
msg112551 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-08-02 21:03
Thanks, fixed in r83580.
History
Date User Action Args
2022-04-11 14:56:58adminsetgithub: 52366
2010-08-02 21:03:00georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg112551

resolution: fixed
2010-03-11 21:02:54brett.cannonsetpriority: low
2010-03-11 15:53:39dmalcolmcreate