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
ebf34c3c
Kaydet (Commit)
ebf34c3c
authored
Ock 25, 2017
tarafından
Mads Jensen
Kaydeden (comit)
Tim Graham
Ock 25, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed unused variables that are overwritten.
üst
5890d6ab
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
4 additions
and
16 deletions
+4
-16
views.py
django/contrib/admindocs/views.py
+0
-1
validators.py
django/core/validators.py
+0
-1
creation.py
django/db/backends/mysql/creation.py
+1
-1
creation.py
django/db/backends/postgresql/creation.py
+1
-1
compiler.py
django/db/models/sql/compiler.py
+0
-1
multipartparser.py
django/http/multipartparser.py
+0
-4
base.py
django/template/base.py
+1
-1
dateformat.py
django/utils/dateformat.py
+0
-1
ipv6.py
django/utils/ipv6.py
+0
-1
tests.py
tests/bulk_create/tests.py
+0
-2
test_base.py
tests/migrations/test_base.py
+1
-1
tests.py
tests/urlpatterns_reverse/tests.py
+0
-1
No files found.
django/contrib/admindocs/views.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -296,7 +296,6 @@ class ModelDetailView(BaseAdminDocsView):
...
@@ -296,7 +296,6 @@ class ModelDetailView(BaseAdminDocsView):
})
})
else
:
else
:
arguments
=
get_func_full_args
(
func
)
arguments
=
get_func_full_args
(
func
)
print_arguments
=
arguments
# Join arguments with ', ' and in case of default value,
# Join arguments with ', ' and in case of default value,
# join it with '='. Use repr() so that strings will be
# join it with '='. Use repr() so that strings will be
# correctly displayed.
# correctly displayed.
...
...
django/core/validators.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -140,7 +140,6 @@ class URLValidator(RegexValidator):
...
@@ -140,7 +140,6 @@ class URLValidator(RegexValidator):
validate_ipv6_address
(
potential_ip
)
validate_ipv6_address
(
potential_ip
)
except
ValidationError
:
except
ValidationError
:
raise
ValidationError
(
self
.
message
,
code
=
self
.
code
)
raise
ValidationError
(
self
.
message
,
code
=
self
.
code
)
url
=
value
# The maximum length of a full host name is 253 characters per RFC 1034
# The maximum length of a full host name is 253 characters per RFC 1034
# section 3.1. It's defined to be 255 bytes or less, but this includes
# section 3.1. It's defined to be 255 bytes or less, but this includes
...
...
django/db/backends/mysql/creation.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -25,7 +25,7 @@ class DatabaseCreation(BaseDatabaseCreation):
...
@@ -25,7 +25,7 @@ class DatabaseCreation(BaseDatabaseCreation):
with
self
.
_nodb_connection
.
cursor
()
as
cursor
:
with
self
.
_nodb_connection
.
cursor
()
as
cursor
:
try
:
try
:
cursor
.
execute
(
"CREATE DATABASE
%
s"
%
qn
(
target_database_name
))
cursor
.
execute
(
"CREATE DATABASE
%
s"
%
qn
(
target_database_name
))
except
Exception
as
e
:
except
Exception
:
if
keepdb
:
if
keepdb
:
return
return
try
:
try
:
...
...
django/db/backends/postgresql/creation.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -41,7 +41,7 @@ class DatabaseCreation(BaseDatabaseCreation):
...
@@ -41,7 +41,7 @@ class DatabaseCreation(BaseDatabaseCreation):
with
self
.
_nodb_connection
.
cursor
()
as
cursor
:
with
self
.
_nodb_connection
.
cursor
()
as
cursor
:
try
:
try
:
cursor
.
execute
(
creation_sql
)
cursor
.
execute
(
creation_sql
)
except
Exception
as
e
:
except
Exception
:
if
keepdb
:
if
keepdb
:
return
return
try
:
try
:
...
...
django/db/models/sql/compiler.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -823,7 +823,6 @@ class SQLCompiler:
...
@@ -823,7 +823,6 @@ class SQLCompiler:
"""
"""
Returns an iterator over the results from executing this query.
Returns an iterator over the results from executing this query.
"""
"""
converters
=
None
if
results
is
None
:
if
results
is
None
:
results
=
self
.
execute_sql
(
MULTI
)
results
=
self
.
execute_sql
(
MULTI
)
fields
=
[
s
[
0
]
for
s
in
self
.
select
[
0
:
self
.
col_count
]]
fields
=
[
s
[
0
]
for
s
in
self
.
select
[
0
:
self
.
col_count
]]
...
...
django/http/multipartparser.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -571,15 +571,11 @@ def exhaust(stream_or_iterable):
...
@@ -571,15 +571,11 @@ def exhaust(stream_or_iterable):
Raise a MultiPartParserError if the argument is not a stream or an iterable.
Raise a MultiPartParserError if the argument is not a stream or an iterable.
"""
"""
iterator
=
None
try
:
try
:
iterator
=
iter
(
stream_or_iterable
)
iterator
=
iter
(
stream_or_iterable
)
except
TypeError
:
except
TypeError
:
iterator
=
ChunkIter
(
stream_or_iterable
,
16384
)
iterator
=
ChunkIter
(
stream_or_iterable
,
16384
)
if
iterator
is
None
:
raise
MultiPartParserError
(
'multipartparser.exhaust() was passed a non-iterable or stream parameter'
)
for
__
in
iterator
:
for
__
in
iterator
:
pass
pass
...
...
django/template/base.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -853,7 +853,7 @@ class Variable:
...
@@ -853,7 +853,7 @@ class Variable:
if
isinstance
(
current
,
BaseContext
)
and
getattr
(
type
(
current
),
bit
):
if
isinstance
(
current
,
BaseContext
)
and
getattr
(
type
(
current
),
bit
):
raise
AttributeError
raise
AttributeError
current
=
getattr
(
current
,
bit
)
current
=
getattr
(
current
,
bit
)
except
(
TypeError
,
AttributeError
)
as
e
:
except
(
TypeError
,
AttributeError
):
# Reraise if the exception was raised by a @property
# Reraise if the exception was raised by a @property
if
not
isinstance
(
current
,
BaseContext
)
and
bit
in
dir
(
current
):
if
not
isinstance
(
current
,
BaseContext
)
and
bit
in
dir
(
current
):
raise
raise
...
...
django/utils/dateformat.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -324,7 +324,6 @@ class DateFormat(TimeFormat):
...
@@ -324,7 +324,6 @@ class DateFormat(TimeFormat):
def
W
(
self
):
def
W
(
self
):
"ISO-8601 week number of year, weeks starting on Monday"
"ISO-8601 week number of year, weeks starting on Monday"
# Algorithm from http://www.personal.ecu.edu/mccartyr/ISOwdALG.txt
# Algorithm from http://www.personal.ecu.edu/mccartyr/ISOwdALG.txt
week_number
=
None
jan1_weekday
=
self
.
data
.
replace
(
month
=
1
,
day
=
1
)
.
weekday
()
+
1
jan1_weekday
=
self
.
data
.
replace
(
month
=
1
,
day
=
1
)
.
weekday
()
+
1
weekday
=
self
.
data
.
weekday
()
+
1
weekday
=
self
.
data
.
weekday
()
+
1
day_of_year
=
self
.
z
()
day_of_year
=
self
.
z
()
...
...
django/utils/ipv6.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -227,7 +227,6 @@ def _explode_shorthand_ip_string(ip_str):
...
@@ -227,7 +227,6 @@ def _explode_shorthand_ip_string(ip_str):
# We've already got a longhand ip_str.
# We've already got a longhand ip_str.
return
ip_str
return
ip_str
new_ip
=
[]
hextet
=
ip_str
.
split
(
'::'
)
hextet
=
ip_str
.
split
(
'::'
)
# If there is a ::, we need to expand it with zeroes
# If there is a ::, we need to expand it with zeroes
...
...
tests/bulk_create/tests.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -206,7 +206,6 @@ class BulkCreateTests(TestCase):
...
@@ -206,7 +206,6 @@ class BulkCreateTests(TestCase):
@skipUnlessDBFeature
(
'can_return_ids_from_bulk_insert'
)
@skipUnlessDBFeature
(
'can_return_ids_from_bulk_insert'
)
def
test_set_pk_and_insert_single_item
(
self
):
def
test_set_pk_and_insert_single_item
(
self
):
countries
=
[]
with
self
.
assertNumQueries
(
1
):
with
self
.
assertNumQueries
(
1
):
countries
=
Country
.
objects
.
bulk_create
([
self
.
data
[
0
]])
countries
=
Country
.
objects
.
bulk_create
([
self
.
data
[
0
]])
self
.
assertEqual
(
len
(
countries
),
1
)
self
.
assertEqual
(
len
(
countries
),
1
)
...
@@ -214,7 +213,6 @@ class BulkCreateTests(TestCase):
...
@@ -214,7 +213,6 @@ class BulkCreateTests(TestCase):
@skipUnlessDBFeature
(
'can_return_ids_from_bulk_insert'
)
@skipUnlessDBFeature
(
'can_return_ids_from_bulk_insert'
)
def
test_set_pk_and_query_efficiency
(
self
):
def
test_set_pk_and_query_efficiency
(
self
):
countries
=
[]
with
self
.
assertNumQueries
(
1
):
with
self
.
assertNumQueries
(
1
):
countries
=
Country
.
objects
.
bulk_create
(
self
.
data
)
countries
=
Country
.
objects
.
bulk_create
(
self
.
data
)
self
.
assertEqual
(
len
(
countries
),
4
)
self
.
assertEqual
(
len
(
countries
),
4
)
...
...
tests/migrations/test_base.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -77,7 +77,7 @@ class MigrationTestBase(TransactionTestCase):
...
@@ -77,7 +77,7 @@ class MigrationTestBase(TransactionTestCase):
),
),
)
)
def
assertFKNotExists
(
self
,
table
,
columns
,
to
,
value
=
True
):
def
assertFKNotExists
(
self
,
table
,
columns
,
to
):
return
self
.
assertFKExists
(
table
,
columns
,
to
,
False
)
return
self
.
assertFKExists
(
table
,
columns
,
to
,
False
)
@contextmanager
@contextmanager
...
...
tests/urlpatterns_reverse/tests.py
Dosyayı görüntüle @
ebf34c3c
...
@@ -426,7 +426,6 @@ class ResolverTests(SimpleTestCase):
...
@@ -426,7 +426,6 @@ class ResolverTests(SimpleTestCase):
e
=
cm
.
exception
e
=
cm
.
exception
# make sure we at least matched the root ('/') url resolver:
# make sure we at least matched the root ('/') url resolver:
self
.
assertIn
(
'tried'
,
e
.
args
[
0
])
self
.
assertIn
(
'tried'
,
e
.
args
[
0
])
tried
=
e
.
args
[
0
][
'tried'
]
self
.
assertEqual
(
self
.
assertEqual
(
len
(
e
.
args
[
0
][
'tried'
]),
len
(
e
.
args
[
0
][
'tried'
]),
len
(
url_types_names
),
len
(
url_types_names
),
...
...
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