public IContentAssistant getContentAssistant(ISourceViewer sourceViewer) {
// next create a content assistant processor to populate the completions window
IContentAssistProcessor processor = new SimpleAssistProcessor(edit, new PythonCompletionProcessor(edit,
pyContentAssistant), pyContentAssistant);
PythonStringCompletionProcessor stringProcessor = new PythonStringCompletionProcessor(edit, pyContentAssistant);
pyContentAssistant.setRestoreCompletionProposalSize(getSettings("pydev_completion_proposal_size"));
// No code completion in comments
pyContentAssistant.setContentAssistProcessor(stringProcessor, IPythonPartitions.PY_SINGLELINE_STRING1);