Skip to content
Snippets Groups Projects
This project is mirrored from https://bitbucket.org/jakimowb/eo-time-series-viewer.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Dec 28, 2013
  2. Dec 27, 2013
  3. Dec 24, 2013
  4. Dec 23, 2013
  5. Dec 22, 2013
  6. Dec 19, 2013
  7. Dec 18, 2013
  8. Dec 17, 2013
  9. Dec 15, 2013
  10. Dec 11, 2013
  11. Dec 08, 2013
  12. Dec 01, 2013
  13. Nov 27, 2013
    • Antony Lee's avatar
      Profilers controllable via PYQTGRAPHPROFILE. · f136b330
      Antony Lee authored
      A new function profiling system is implemented.  Most importantly, this
      allows one to profile various internal functions directly by setting the
      `PYQTGRAPHPROFILE` environment variable to a comma separated list of
      function and method names, e.g.
      
          PYQTGRAPHPROFILE=functions.makeARGB,ImageItem.render \
              python -mexamples
      
      Specifically, items in `PYQTGRAPHPROFILE` must be of the form
      `classname.methodname` or `dotted_module_name.functionname`, with the
      initial "pyqtgraph." stripped from the dotted module name.
      
      Moreover, the overhead of inactive profilers has been kept minimal: an
      introspective check of the caller's name (only if `PYQTGRAPHPROFILE` is
      set) and a trivial function (not method) call per profiler call.
      
      The new profilers rely on `sys._getframe` to find the caller's name,
      although the previous system (passing the caller's name explicitely)
      could certainly have been kept instead.
      
      Finally the API of profilers has been changed: register a
      profiling point simply by calling the profiler, and profilers are
      automatically flushed on garbage collection.  See the docstring of
      `pyqtgraph.debug.Profiler` for more details.
      f136b330
  14. Nov 25, 2013
Loading