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 CharlesMerriam
Recipients CharlesMerriam, vinay.sajip
Date 2008-04-25.20:33:37
SpamBayes Score 0.00011141147
Marked as misclassified No
Message-id <b8c6f6c40804251333v5fe860e5i1903ef8c6e5de6f6@mail.gmail.com>
In-reply-to <1209119272.6.0.660947801824.issue2684@psf.upfronthosting.co.za>
Content
In my installation, line 1327 is within the logging.debug()  function,
specifically at the
call to  apply(root.debug, (msg,)+args, kwargs)

chasm@chasm-laptop:~/py$ rm *.pyc
chasm@chasm-laptop:~/py$ python x.py
DEBUG:logging/__init__.py:1327:Hello
chasm@chasm-laptop:~/py$ uname -a
Linux chasm-laptop 2.6.22-14-generic #1 SMP Tue Feb 12 07:42:25 UTC
2008 i686 GNU/Linux
chasm@chasm-laptop:~/py$ python -V
Python 2.5.1

-and then-
chasm@chasm-laptop:/usr/lib/python2.5$ sudo rm -rf *.pyc *.pyo */*.pyc
*/*.pyo */*/*.pyc */*/*.pyo
chasm@chasm-laptop:/usr/lib/python2.5$ cd ~/py
chasm@chasm-laptop:~/py$ python x.py
DEBUG:x.py:7:Hello
chasm@chasm-laptop:~/py$

So it was somewhere in the library brunches.  The uname -a translates
to "Kbuntu Gutsy".  Python, and extras like pylint, coverage, and
nose, were installed via Kbuntu's package manager.

-- Charles

On Fri, Apr 25, 2008 at 3:27 AM, Vinay Sajip <report@bugs.python.org> wrote:
>
>  Vinay Sajip <vinay_sajip@yahoo.co.uk> added the comment:
>
>  Can you confirm whether this problem occurs even after deleting all .pyc
>  and .pyo files, including in the Python library folders and your
>  application folders? Also, which specific platform is this happening on?
>
>  On your installation, is the line number 1327 the last line in
>  logging/__init__.py?
>
>  ----------
>  assignee:  -> vsajip
>  nosy: +vsajip
>
>
>
>  __________________________________
>  Tracker <report@bugs.python.org>
>  <http://bugs.python.org/issue2684>
>  __________________________________
>
History
Date User Action Args
2008-04-25 20:33:40CharlesMerriamsetspambayes_score: 0.000111411 -> 0.00011141147
recipients: + CharlesMerriam, vinay.sajip
2008-04-25 20:33:39CharlesMerriamlinkissue2684 messages
2008-04-25 20:33:37CharlesMerriamcreate