https://bugs.kde.org/show_bug.cgi?id=368556
Bug ID: 368556
Summary: parsing order is sometimes wrong
Product: kdev-python
Version: git master
Platform: Other
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: NOR
Component: Language support
Assignee: [email protected]
Reporter: [email protected]
Sometimes parsing order is wrong, and files are not updated in the right
sequence. This needs to be investigated. A complex example is below, but I have
also seen similar issues in simpler cases.
from django.template import RequestContext
from django.shortcuts import render_to_response
from django.contrib.auth import (authenticate, login, logout)
from storageadmin.models import (Appliance, Setup, UpdateSubscription)
from django.shortcuts import redirect
from django.contrib import messages
from django.conf import settings
from rest_framework.renderers import JSONRenderer
def login_page(request):
return render_to_response('login.html',
context_instance=RequestContext(request))
--
You are receiving this mail because:
You are watching all bug changes.