Re: Development story for CBV FormViews using GET

2019-04-18 Thread Jamesie Pic
Hi Kye, Sorry for mispelling your name above, but it's a really long thread and non-native. And I can tell, there's rarely a better way than discussing in foreign languages to make a nice little fool of myself xD This time I will share my story with CBV, a story with love, and code and aggressive

Re: django_chatterbot

2019-04-18 Thread Aymeric Augustin
Hello, This mailing list is for the development of Django itself, not for support using Django or third-party apps. Please use the support channels for the django-chatterbot project or a site like Stack Overflow. -- Aymeric. > On 18 Apr 2019, at 10:39, Meow wrote: > > Hi, Abhineet, could

Re: PR review request https://github.com/django/django/pull/11157

2019-04-18 Thread Mariusz Felisiak
Posting review request is not a part of our workflow. You should uncheck "Patch needs improvement" flag on the ticket if you think that it is ready for review. Currently it is not in tickets waiting for review (see Patches needing review

PR review request https://github.com/django/django/pull/11157

2019-04-18 Thread Petr Glotov
Not sure if posting review requests to mailing list is part of the process, but could we get https://github.com/django/django/pull/11157 reviewed/merged? -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To

Re: Running Django test suite foo first time on windows Hanging

2019-04-18 Thread Chris Wedgwood
Thanks Adam will do! On Thursday, 18 April 2019 16:36:48 UTC+1, Adam Johnson wrote: > > Hi Chris! > > I'm not a Windows user, but I guess something in your Windows > configuration is making the Python file open in VSCode rather than get run > by the Python interpreter. Probably installing VSCode

Re: Running Django test suite foo first time on windows Hanging

2019-04-18 Thread Adam Johnson
Hi Chris! I'm not a Windows user, but I guess something in your Windows configuration is making the Python file open in VSCode rather than get run by the Python interpreter. Probably installing VSCode after Python reconfigured Windows to do this. The first line of runtests.py is a shebang: https:

Re: Why does ModelForm do validation and not Model

2019-04-18 Thread Tobias Kunze
On 19-04-18 05:07:53, Václav Řehák wrote: >If it was possible, e.g. in settings, to force model >validation in save(), it would help us a lot. Would it help you even if this would only apply to actual `save()` calls, no bulk creates, no bulk updates, and no modifications of m2m relationships via

Running Django test suite foo first time on windows Hanging

2019-04-18 Thread Chris Wedgwood
Hi I am running django's test suite for the first time on windows as part of the onboarding tutorial( https://docs.djangoproject.com/en/dev/intro/contributing/) and one of the instructions is to run ...\> runtests.py when I run this the file is opened in vscode and I dont see any output. It

Re: django_chatterbot

2019-04-18 Thread Meow
Hi, Abhineet, could you show us the code ? On Apr 18, 2019, 06:47 +0800, Abhineet Baranwal , wrote: > Hello there, > I am using django chatterbot but whenevere i typed any new sentence and hit > enter then the bot returns always the current time.I do not know why it > always respond with the cur

Re: Proposal to format Django using black

2019-04-18 Thread Jani Tiainen
Well let me add my two cents here since I was also in the group in DCEU that talked about the usage of black. Personally I don't like to contribute to Django. And this is why: Day one: I'll make the fix/patch and create PR Day two (or four or five depending how busy reviewers are): I missed a com

Re: Why does ModelForm do validation and not Model

2019-04-18 Thread Václav Řehák
Dne čtvrtek 18. dubna 2019 10:56:55 UTC+2 Aymeric Augustin napsal(a): > > Le mer. 17 avr. 2019 à 22:32, Curtis Maloney > a écrit : > > > It's mostly for performance reasons, since validation can be expensive. >> >> Really? My memory was that it was (a) backward compatibility [model >> validation

Re: Why does ModelForm do validation and not Model

2019-04-18 Thread Aymeric Augustin
Hi Curtis, Le mer. 17 avr. 2019 à 22:32, Curtis Maloney a écrit : > It's mostly for performance reasons, since validation can be expensive. > > Really? My memory was that it was (a) backward compatibility [model > validation was added later], and (b) practicality [try catching > everywhere in yo