Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
bbe28496
Kaydet (Commit)
bbe28496
authored
Şub 05, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed old import aliases.
üst
0f54cf28
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
12 deletions
+2
-12
basehttp.py
django/core/servers/basehttp.py
+0
-1
fields.py
django/forms/fields.py
+0
-4
testcases.py
django/test/testcases.py
+0
-1
log.py
django/utils/log.py
+1
-5
admin.py
tests/admin_views/admin.py
+1
-1
No files found.
django/core/servers/basehttp.py
Dosyayı görüntüle @
bbe28496
...
@@ -12,7 +12,6 @@ from __future__ import unicode_literals
...
@@ -12,7 +12,6 @@ from __future__ import unicode_literals
import
socket
import
socket
import
sys
import
sys
from
wsgiref
import
simple_server
from
wsgiref
import
simple_server
from
wsgiref.util
import
FileWrapper
# NOQA: for backwards compatibility
from
django.core.exceptions
import
ImproperlyConfigured
from
django.core.exceptions
import
ImproperlyConfigured
from
django.core.handlers.wsgi
import
ISO_8859_1
,
UTF_8
from
django.core.handlers.wsgi
import
ISO_8859_1
,
UTF_8
...
...
django/forms/fields.py
Dosyayı görüntüle @
bbe28496
...
@@ -33,10 +33,6 @@ from django.utils import six
...
@@ -33,10 +33,6 @@ from django.utils import six
from
django.utils.six.moves.urllib.parse
import
urlsplit
,
urlunsplit
from
django.utils.six.moves.urllib.parse
import
urlsplit
,
urlunsplit
from
django.utils.translation
import
ugettext_lazy
as
_
,
ungettext_lazy
from
django.utils.translation
import
ugettext_lazy
as
_
,
ungettext_lazy
# Provide this import for backwards compatibility.
from
django.core.validators
import
EMPTY_VALUES
# NOQA
__all__
=
(
__all__
=
(
'Field'
,
'CharField'
,
'IntegerField'
,
'Field'
,
'CharField'
,
'IntegerField'
,
'DateField'
,
'TimeField'
,
'DateTimeField'
,
'DurationField'
,
'DateField'
,
'TimeField'
,
'DateTimeField'
,
'DurationField'
,
...
...
django/test/testcases.py
Dosyayı görüntüle @
bbe28496
...
@@ -14,7 +14,6 @@ import sys
...
@@ -14,7 +14,6 @@ import sys
import
threading
import
threading
import
unittest
import
unittest
import
warnings
import
warnings
from
unittest
import
skipIf
# NOQA: Imported here for backward compatibility
from
unittest.util
import
safe_repr
from
unittest.util
import
safe_repr
from
django.apps
import
apps
from
django.apps
import
apps
...
...
django/utils/log.py
Dosyayı görüntüle @
bbe28496
...
@@ -12,10 +12,6 @@ from django.utils.encoding import force_text
...
@@ -12,10 +12,6 @@ from django.utils.encoding import force_text
from
django.utils.module_loading
import
import_string
from
django.utils.module_loading
import
import_string
from
django.views.debug
import
ExceptionReporter
,
get_exception_reporter_filter
from
django.views.debug
import
ExceptionReporter
,
get_exception_reporter_filter
# Imports kept for backwards-compatibility in Django 1.7.
from
logging
import
NullHandler
# NOQA
from
logging.config
import
dictConfig
# NOQA
getLogger
=
logging
.
getLogger
getLogger
=
logging
.
getLogger
# Default logging for Django. This sends an email to the site admins on every
# Default logging for Django. This sends an email to the site admins on every
...
@@ -80,7 +76,7 @@ def configure_logging(logging_config, logging_settings):
...
@@ -80,7 +76,7 @@ def configure_logging(logging_config, logging_settings):
# First find the logging configuration function ...
# First find the logging configuration function ...
logging_config_func
=
import_string
(
logging_config
)
logging_config_func
=
import_string
(
logging_config
)
dictConfig
(
DEFAULT_LOGGING
)
logging
.
config
.
dictConfig
(
DEFAULT_LOGGING
)
# ... then invoke it with the logging settings
# ... then invoke it with the logging settings
if
logging_settings
:
if
logging_settings
:
...
...
tests/admin_views/admin.py
Dosyayı görüntüle @
bbe28496
...
@@ -3,6 +3,7 @@ from __future__ import unicode_literals
...
@@ -3,6 +3,7 @@ from __future__ import unicode_literals
import
tempfile
import
tempfile
import
os
import
os
from
wsgiref.util
import
FileWrapper
from
django
import
forms
from
django
import
forms
from
django.contrib
import
admin
from
django.contrib
import
admin
...
@@ -10,7 +11,6 @@ from django.contrib.admin.views.main import ChangeList
...
@@ -10,7 +11,6 @@ from django.contrib.admin.views.main import ChangeList
from
django.core.exceptions
import
ValidationError
from
django.core.exceptions
import
ValidationError
from
django.core.files.storage
import
FileSystemStorage
from
django.core.files.storage
import
FileSystemStorage
from
django.core.mail
import
EmailMessage
from
django.core.mail
import
EmailMessage
from
django.core.servers.basehttp
import
FileWrapper
from
django.conf.urls
import
url
from
django.conf.urls
import
url
from
django.forms.models
import
BaseModelFormSet
from
django.forms.models
import
BaseModelFormSet
from
django.http
import
HttpResponse
,
StreamingHttpResponse
from
django.http
import
HttpResponse
,
StreamingHttpResponse
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment