Last Site Update: 13 October 2005 | Latest Version: 0.9.8.3

 
 
 
Home
Features
Editor
Debugger
Code Completion
Templates
Code Coverage
Content Assistants
Refactoring
Tasks
PyLint
Roadmap
Screenshots
Download
Credits
More info
FAQ / BUGS
Users List (code)
Users Forum
Fabio Zadrozny Blog
Aleks Totic Blog
Hosted at
PyDev at Sourceforge
Donate
Sponsored by
 
Want a better PyDev? Why not give a small donation? (paypal)

Content Assistants

Some content assistants to make your life easier...

They are activated through Ctrl+1

Currently, there are 4 content assistants implemented in pydev:
  • Move import to global scope
  • Create docstring
  • Assign result to new local variable (or field)
  • Surround code with try..except or try..finally
Below, examples of each in use are shown.

Move import to global scope

Before


After

Create docstring

Must be called in the 'def' line.

Before


After

Assign result to new local variable (or field)

Before


After

Surround code with try..except or try..finally

Must have some code selected

Before


After