Youssef Moussaoui
58f1833cab
Declare is_relation and related_model on Field ( #230 )
2019-11-30 22:40:22 +03:00
Konstantin Alekseev
cbc7159995
Support mypy 0.750
2019-11-30 13:39:28 +03:00
Patrick Gingras
df4c17a947
added base_fields and declared_fields properties to Form ( #235 )
2019-11-27 22:48:05 +03:00
Anthony Ricaud
557b7a4fa3
Add new View.setup method introduced in Django 2.2 ( #233 )
...
https://docs.djangoproject.com/en/2.2/ref/class-based-views/base/#django.views.generic.base.View.setup
https://github.com/django/django/blob/2.2/django/views/generic/base.py#L83-L87
2019-11-20 23:49:38 +03:00
Maksim Kurnikov
8343d76895
Fix has_perm() methods for auth backend, and for contrib.auth.models ( #232 )
...
* fix has_perm() methods
* lint
2019-11-19 04:54:17 +03:00
Maksim Kurnikov
8d986a0f43
remove catch-all __getattr__ for Manager, fix some issues with manager methods ( #227 )
2019-11-12 20:36:07 +03:00
Pilifer
e9a90ebff0
More precise annotations of utils.timezone functions that return instances of tzinfo subclasses. ( #209 )
...
* fix annotations of utils.timezone
* use intermediary tzinfo subclass exposed in pytz typeshed
* fix annotations of get_fixed_timezone as it returns datetime.timezone in Django 2.2
* add explanatory comment to get_current_timezone annotations
* black utils.timezone.pyi
2019-11-12 18:27:54 +03:00
Christopher Sabater Cordero
7b74a6944a
Add a few missing types to the stubfiles ( #214 )
...
* Add types to stub files.
* Fix black and flake8 errors.
2019-11-12 18:25:31 +03:00
Seth Yastrov
83f11a0fc6
Add Tags.translation to stub ( #226 )
2019-11-12 18:23:29 +03:00
Seth Yastrov
2829faf1af
Both CSRF_COOKIE_SAMESITE and SESSION_COOKIE_SAMESITE should be Optional ( #216 )
2019-11-12 16:13:16 +03:00
src
d061e84cc7
Add HttpResponsePermanentRedirect to django.shortcuts ( #211 )
2019-11-12 16:12:36 +03:00
Anna Sidwell
3a9263dc62
Two small improvements ( #217 )
...
* Add return type for admin.SimpleListFilter.lookups
* force_login() can take any user, not just builtin
2019-11-12 13:31:24 +03:00
Yngve Høiseth
14aea2b4d4
Allow returning bool from test_func ( #220 )
2019-11-12 05:52:23 +03:00
Maksim Kurnikov
287c64d6fb
Pin to 0.740 and fix CI ( #225 )
...
* update django sources
* pin mypy version, update to 0.740
* fix tests typechecking
* fix lint
2019-11-12 05:17:36 +03:00
Andrey
87d59c7c1a
Fix django.contrib.admin.options.BaseModelAdmin.has_add_permission ( #205 )
...
* Fix `django.contrib.admin.options.BaseModelAdmin.has_add_permission` (#203 ).
* Add `django.db.models.base.Model.unique_error_message` (#204 ).
2019-10-11 12:16:21 +03:00
Maxim Kurnikov
8402e7c53e
improve annotations in some places ( #202 )
...
* improve annotations in some places
* linting
2019-10-07 14:50:45 +03:00
Maxim Kurnikov
dceb075152
fix annotation for BaseCommand.handle() ( #201 )
2019-10-05 21:36:41 +03:00
Maxim Kurnikov
02bdf5be95
add support for typechecking of filter/get/exclude arguments ( #183 )
...
* add support for typechecking of filter/get/exclude arguments
* linting
2019-09-30 03:05:40 +03:00
Maxim Kurnikov
4d4b0003bd
Fix Paginator properties mistyped as Callables ( #193 )
...
Co-authored-by: Nick Sweeting <git@sweeting.me >
2019-09-28 22:16:20 +03:00
Anthony Ricaud
acc3ca4205
Contexts can contain Any data ( #192 )
2019-09-28 21:38:04 +03:00
Maxim Kurnikov
be3fc259d5
fix compatibility with 0.730 ( #189 )
2019-09-28 05:23:55 +03:00
Anthony Ricaud
5910bd1b25
resolve_template accepts Sequences of str ( #187 )
...
- resolve_template is checking for lists or tuples so let's use a generic Sequence
- Union[Template, Template] seemed redundant
2019-09-25 23:32:23 +03:00
Maxim Kurnikov
963d50c717
add linting stubs with flake8-pyi and check for unused imports ( #186 )
2019-09-25 02:20:23 +03:00
Maxim Kurnikov
7407b93151
Fix type annotations for django.utils.safestring ( #179 )
...
* Add/fix types for django.utils.safestring.mark_safe
Django code ref: 964dd4f4f2/django/utils/safestring.py (L71-L84)
* add generic annotations for mark_safe, remove SafeBytes as it is basically deprecated
Co-authored-by: Daniel Hahler <github@thequod.de >
2019-09-23 21:17:17 +03:00
Maxim Kurnikov
a85dbff793
update import_all test, add some stubs for postgres ( #178 )
2019-09-23 19:47:11 +03:00
Maxim Kurnikov
68aebe2528
Add django.contrib.gis.db.models and django.contrib.gis.db.models.fields ( #177 )
...
* add django.contrib.gis.db.models and django.contrib.gis.db.models.fields
* install gdal in ci
* add sudo to apt
* add apt update
2019-09-23 19:30:32 +03:00
Peter Law
d3dca5b408
related_name is Optional[str] ( #176 )
...
In the current Django (2.1, 2.2), the `related_name` parameter to
`OneToOneField` and `ForeignKey` classes (much like `ManyToManyField`
and the base `ForeignObject` classes) is `Optional[str]`. While
it's true that most authors won't pass `None` here, derived field
types will want to be able to do so.
2019-09-23 17:38:34 +03:00
Peter Law
c69090ec5b
Options.verbose_name_raw is always a string ( #175 )
...
At least in the current implementation.
2019-09-21 16:07:55 +03:00
Maxim Kurnikov
64720f492c
add proper stubs for django.contrib.auth.models model fields ( #170 )
2019-09-18 01:40:15 +03:00
Maxim Kurnikov
a8fdd4c673
cleanup some stubs in contrib.admin, contrib.admindocs ( #169 )
2019-09-17 23:30:49 +03:00
Maxim Kurnikov
813dd8cc1a
make types for generic mixins less strict ( #168 )
2019-09-17 23:30:07 +03:00
Maxim Kurnikov
2b53fa5a1a
Fix typecheck tests ci ( #165 )
...
* remove mention of mypy newsemanal to prepare for 0.730
* make typecheck_tests CI really work
* fix lints
* fix intentional error
* merge stderr in stdout to preserve order
Co-authored-by: Daniel Hahler <github@thequod.de >
2019-09-16 14:35:13 +03:00
Wlises R
0c3e06e875
Solve issue 154: Fix wrong type for size in File. ( #156 )
2019-09-06 09:16:19 +03:00
Jared Kerim
b8379d4fe6
Add property to forms.changed_data fixes #148 ( #149 )
2019-08-30 11:18:24 +03:00
Maxim Kurnikov
dce0c0e930
Add 'django.core.cache.backends.memcached' stubs ( #141 )
2019-08-24 18:35:42 +03:00
Maxim Kurnikov
fc9a335dfd
make ValuesQuerySet have proper Collection generic type ( #140 )
2019-08-24 18:24:21 +03:00
Maxim Kurnikov
c91a6d1d5b
replace None annotations with Optional[] around
2019-08-24 16:35:07 +03:00
Maxim Kurnikov
d7e8222163
Fix related fields inheritance from abstract models ( #138 )
2019-08-24 02:35:55 +03:00
Maxim Kurnikov
09767210ec
Return corresponding descriptors for some fields in class access ( #137 )
...
* return corresponding descriptors for some related fields in class access
* return corresponding descriptors for file fields in class access
* fix tests
2019-08-23 04:03:03 +03:00
Maxim Kurnikov
656105bab2
make first() an Optional, allow to specify QuerySet with one parameter ( #136 )
2019-08-23 03:31:07 +03:00
Nikita Sobolev
ff7bf33e9c
Fixes #127 , adds urls.pyi for several contrib apps ( #129 )
2019-08-16 15:45:17 +03:00
Nikita Sobolev
d94b7b0c6a
Fixes collectstatic storage type, closes #130 ( #131 )
2019-08-16 15:45:07 +03:00
Swen Kooij
7bf1664307
Add properties to runserver.Command ( #135 )
2019-08-16 15:44:49 +03:00
Nikita Sobolev
7f476057b0
Refactors bad default values, now using Ellipsis ( #132 )
...
* Refactors bad default values, now using Ellipsis
* Blacked
2019-08-13 15:01:15 +03:00
Nikita Sobolev
d31512854a
Merge pull request #124 from K0Te/fix-email-annotations
...
Fix EmailMessage.attachements parameter annotation.
2019-08-12 18:46:10 +03:00
Anthony Ricaud
a9978cc021
Improve lazy translation functions
...
The lazy versions have the same signature as the non-lazy versions
2019-08-09 12:37:17 +01:00
Oleg Nykolyn
bb08212b20
Fix EmailMessage.attachements parameter annotation.
2019-08-01 22:02:18 +03:00
Maxim Kurnikov
4c21855641
fix mypy errors
2019-07-25 18:52:51 +03:00
Maxim Kurnikov
a019fe9715
csrf middleware callable can be none
2019-07-25 15:03:10 +03:00
Maxim Kurnikov
e6d7a570e8
fix merge artifact
2019-07-24 22:05:05 +03:00