[issue9948] findCaller is slow and loses case information on Windows

2013-03-28 Thread Georg Brandl

Georg Brandl added the comment:

Closing due to lack of response.

--
nosy: +georg.brandl
resolution:  - fixed
status: pending - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9948
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9948] findCaller is slow and loses case information on Windows

2010-10-10 Thread Vinay Sajip

Vinay Sajip vinay_sa...@yahoo.co.uk added the comment:

Partial fix checked into py3k and release27-maint branches (for losing filename 
case information) - r85361.

Regarding performance changes - awaiting feedback from Armin re. my performance 
measurements showing only marginal differences.

--
status: open - pending

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9948
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9948] findCaller is slow and loses case information on Windows

2010-09-28 Thread Vinay Sajip

Vinay Sajip vinay_sa...@yahoo.co.uk added the comment:

I made a temporary change to logging to time the two different approaches: see 
this gist:

http://gist.github.com/601162

According to these findings, the use of module globals seems to make only a 
marginal difference:

vi...@eta-jaunty:~/projects/scratch$ python3.2 timefc.py
filename_comparison 50.61 microseconds
module_globals 49.56 microseconds
vi...@eta-jaunty:~/projects/scratch$ python2.7 timefc.py
filename_comparison 50.79 microseconds
module_globals 50.01 microseconds

Have I missed something obvious?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9948
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9948] findCaller is slow and loses case information on Windows

2010-09-26 Thread Vinay Sajip

Vinay Sajip vinay_sa...@yahoo.co.uk added the comment:

Your basic fix looks fine, but there's a couple of other issues to consider:

1. Users can use _srcFile = None to avoid calling findCaller() altogether, so I 
can't do away with the _srcFile altogether as it may cause some issues with 
existing code.

2. If using e.g. a LoggerAdapter derived class, there needs to be some way in 
which you can skip (in addition to the logging package itself) other 
user-defined modules until you get to the appropriate stack frame.

I'm thinking about these, but if you have any ideas about these, I'm listening 
:-)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9948
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9948] findCaller is slow and loses case information on Windows

2010-09-26 Thread Armin Ronacher

Armin Ronacher armin.ronac...@active-4.com added the comment:

 1. Users can use _srcFile = None to avoid calling findCaller() 
 altogether, so I can't do away with the _srcFile altogether as it may 
 cause some issues with existing code.
That is very undocumented behaviour and relying on that sounds like a terrible 
idea.

 2. If using e.g. a LoggerAdapter derived class, there needs to be 
 some way in which you can skip (in addition to the logging package 
 itself) other user-defined modules until you get to the appropriate 
 stack frame.
First of all that should not be a global setting, secondly this is currently 
not possible in logging either.  A better solution would be to do what warnings 
does and making it possible provide a stacklevel to the caller finder.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9948
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9948] findCaller is slow and loses case information on Windows

2010-09-26 Thread Vinay Sajip

Vinay Sajip vinay_sa...@yahoo.co.uk added the comment:

 That is very undocumented behaviour and relying on that sounds like a 
 terrible idea.

Agreed, I'm just fretting about it ...

 First of all that should not be a global setting, secondly this is currently 
 not possible in logging either.

True, but you have pointed out in the past that this *is* a problem - so it 
would be good to solve it.

 A better solution would be to do what warnings does and making it possible 
 provide a stacklevel to the caller finder.

I'm not that familiar with how warnings does it, but I will take a look.

Thanks for the suggestions.

BTW re. your patch - where you say os.co_filename, do you mean 
co.co_filename?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9948
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9948] findCaller is slow and loses case information on Windows

2010-09-25 Thread Armin Ronacher

New submission from Armin Ronacher armin.ronac...@active-4.com:

findCaller() on loses case information on the files on Windows and has in 
general a really bad performance.  The attached patch does not depend on 
filename comparisions and instead compares the object identity of the caller's 
global namespace against the one from the logging module.

--
assignee: vinay.sajip
components: Library (Lib)
files: find-caller.patch
keywords: patch
messages: 117373
nosy: aronacher, vinay.sajip
priority: normal
severity: normal
status: open
title: findCaller is slow and loses case information on Windows
versions: Python 2.7
Added file: http://bugs.python.org/file19008/find-caller.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9948
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9948] findCaller is slow and loses case information on Windows

2010-09-25 Thread Armin Ronacher

Changes by Armin Ronacher armin.ronac...@active-4.com:


Added file: http://bugs.python.org/file19009/find-caller.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9948
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9948] findCaller is slow and loses case information on Windows

2010-09-25 Thread Armin Ronacher

Changes by Armin Ronacher armin.ronac...@active-4.com:


Removed file: http://bugs.python.org/file19008/find-caller.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9948
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com