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.

Author vinay.sajip
Recipients Alexandr, r.david.murray, vinay.sajip
Date 2011-08-10.16:09:01
SpamBayes Score 0.004600601
Marked as misclassified No
Message-id <1312992542.78.0.974012662683.issue12718@psf.upfronthosting.co.za>
In-reply-to
Content
BTW I just tested on PyPy. The following program:

import logging.config
import sys

d = {
    'version': 1,
    'disable_existing_loggers': False,
    'handlers': {
        'console': {
            'level': 'DEBUG',
            'class': 'logging.StreamHandler',
            'stream': 'ext://sys.stdout',
        }
    },
    'root': {
        'level': 'DEBUG',
    }
}

logging.config.dictConfig(d)
logging.debug('%s', sys.version)

prints:

vinay@eta-natty:~/projects/scratch$ python dctest.py
DEBUG:root:2.7.1+ (r271:86832, Apr 11 2011, 18:05:24) 
[GCC 4.5.2]
vinay@eta-natty:~/projects/scratch$ ~/pypy-c-jit-43780-b590cf6de419-linux/bin/pypy dctest.py 
DEBUG:root:2.7.1 (b590cf6de419, Apr 30 2011, 02:00:38)
[PyPy 1.5.0-alpha0 with GCC 4.4.3]
History
Date User Action Args
2011-08-10 16:09:02vinay.sajipsetrecipients: + vinay.sajip, r.david.murray, Alexandr
2011-08-10 16:09:02vinay.sajipsetmessageid: <1312992542.78.0.974012662683.issue12718@psf.upfronthosting.co.za>
2011-08-10 16:09:02vinay.sajiplinkissue12718 messages
2011-08-10 16:09:01vinay.sajipcreate