Loading django/db/models/sql/query.py +0 −1 Original line number Diff line number Diff line Loading @@ -1213,7 +1213,6 @@ class Query(object): raise MultiJoin(pos + 1) if model: # The field lives on a base class of the current model. alias_list = [] for int_model in opts.get_base_chain(model): lhs_col = opts.parents[int_model].column dedupe = lhs_col in opts.duplicate_targets Loading django/http/multipartparser.py +2 −13 Original line number Diff line number Diff line Loading @@ -4,6 +4,7 @@ Multi-part parsing for file uploads. Exposes one class, ``MultiPartParser``, which feeds chunks of uploaded data to file upload handlers for processing. """ import cgi from django.conf import settings from django.core.exceptions import SuspiciousOperation Loading Loading @@ -162,7 +163,6 @@ class MultiPartParser(object): force_unicode(data, encoding, errors='replace')) elif item_type == FILE: # This is a file, use the handler... file_successful = True file_name = disposition.get('filename') if not file_name: continue Loading Loading @@ -209,7 +209,6 @@ class MultiPartParser(object): break except SkipFile, e: file_successful = False # Just use up the rest of this file... exhaust(field_stream) else: Loading Loading @@ -515,21 +514,11 @@ class BoundaryIter(object): else: end = index next = index + len(self._boundary) data_len = len(data) - 1 # backup over CRLF if data[max(0,end-1)] == '\n': end -= 1 if data[max(0,end-1)] == '\r': end -= 1 # skip over --CRLF #if data[min(data_len,next)] == '-': # next += 1 #if data[min(data_len,next)] == '-': # next += 1 #if data[min(data_len,next)] == '\r': # next += 1 #if data[min(data_len,next)] == '\n': # next += 1 return end, next def exhaust(stream_or_iterable): Loading django/views/debug.py +0 −2 Original line number Diff line number Diff line Loading @@ -145,8 +145,6 @@ class ExceptionReporter: 'line': line, 'name': origin.name, } if hasattr(self.exc_value, 'exc_info') and self.exc_value.exc_info: exc_type, exc_value, tb = self.exc_value.exc_info def _get_lines_from_file(self, filename, lineno, context_lines, loader=None, module_name=None): """ Loading Loading
django/db/models/sql/query.py +0 −1 Original line number Diff line number Diff line Loading @@ -1213,7 +1213,6 @@ class Query(object): raise MultiJoin(pos + 1) if model: # The field lives on a base class of the current model. alias_list = [] for int_model in opts.get_base_chain(model): lhs_col = opts.parents[int_model].column dedupe = lhs_col in opts.duplicate_targets Loading
django/http/multipartparser.py +2 −13 Original line number Diff line number Diff line Loading @@ -4,6 +4,7 @@ Multi-part parsing for file uploads. Exposes one class, ``MultiPartParser``, which feeds chunks of uploaded data to file upload handlers for processing. """ import cgi from django.conf import settings from django.core.exceptions import SuspiciousOperation Loading Loading @@ -162,7 +163,6 @@ class MultiPartParser(object): force_unicode(data, encoding, errors='replace')) elif item_type == FILE: # This is a file, use the handler... file_successful = True file_name = disposition.get('filename') if not file_name: continue Loading Loading @@ -209,7 +209,6 @@ class MultiPartParser(object): break except SkipFile, e: file_successful = False # Just use up the rest of this file... exhaust(field_stream) else: Loading Loading @@ -515,21 +514,11 @@ class BoundaryIter(object): else: end = index next = index + len(self._boundary) data_len = len(data) - 1 # backup over CRLF if data[max(0,end-1)] == '\n': end -= 1 if data[max(0,end-1)] == '\r': end -= 1 # skip over --CRLF #if data[min(data_len,next)] == '-': # next += 1 #if data[min(data_len,next)] == '-': # next += 1 #if data[min(data_len,next)] == '\r': # next += 1 #if data[min(data_len,next)] == '\n': # next += 1 return end, next def exhaust(stream_or_iterable): Loading
django/views/debug.py +0 −2 Original line number Diff line number Diff line Loading @@ -145,8 +145,6 @@ class ExceptionReporter: 'line': line, 'name': origin.name, } if hasattr(self.exc_value, 'exc_info') and self.exc_value.exc_info: exc_type, exc_value, tb = self.exc_value.exc_info def _get_lines_from_file(self, filename, lineno, context_lines, loader=None, module_name=None): """ Loading