A different approach for the auto-reloader

2019-04-23 Thread Ramiro Morales
Hi all, I had a stab at a somewhat simpler development server automatic reloading strategy https://github.com/django/django/compare/master...ramiro:synch-reloader Intention is to test how an implementation of a design by Gary Bernhardt would look. The best written description I could find is

Re: UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 9735: illegal multibyte sequence

2019-04-23 Thread Hyogeun Kim
I think I have same problem like this https://code.djangoproject.com/ticket/30324, and I checked another Django version 1.11 and 2.1. and It works well. thank you Carlton PS: I tested on my Mac and I got this error message "UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position

Re: Google "Season of Docs"

2019-04-23 Thread Adam Johnson
Sounds great, thanks for your work here Carlton. On Mon, 22 Apr 2019 at 09:42, Carlton Gibson wrote: > Quick update: > > I've applied Django for Season of Docs. Don't know if we're accepted yet > but 爛 > > As per the timeline Technical Writer applications open May 29th. > >

Re: UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 9735: illegal multibyte sequence

2019-04-23 Thread Carlton Gibson
On Tuesday, 23 April 2019 14:30:48 UTC+2, Carlton Gibson wrote: > > > What IS the right way of setting the locale on Windows...? > Not sure if it's the only way but, on Windows 10 you can tick a "Use Unicode UTF-8 for worldwide language support", box in "Region & Language" - "Administrative"

Re: UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 9735: illegal multibyte sequence

2019-04-23 Thread Carlton Gibson
On Tuesday, 23 April 2019 14:27:24 UTC+2, Carlton Gibson wrote: > > If you set the `PYTHONIOENCODING` to utf8 before launching... > Not actually sure this is sufficient. What IS the right way of setting the locale on Windows...? -- You received this message because you are subscribed to the

Re: UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 9735: illegal multibyte sequence

2019-04-23 Thread Carlton Gibson
This looks to be https://code.djangoproject.com/ticket/30324, which will be fixed by 2.2.1 next week. (Please open a new ticket with full details if it is distinct.) If you set the `PYTHONIOENCODING` to utf8 before launching Python you shouldn't this. (Or related unicode errors)

Proposal: Allow ManyToMany using a intermediary table to be defined as symmetrical

2019-04-23 Thread Nadège Michel
Hello, We use self.referencing ManyToMany relationships with intermediate tables in our work project and I was wondering why we had to create ourselves the reverse link when we need the relationship to be symmetrical. I looked at the 'symmetrical' attribute documentation and though we should

UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 9735: illegal multibyte sequence

2019-04-23 Thread Hyogeun Kim
Hi everyone I got this error message "UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 9735: illegal multibyte sequence" when I write some data on admin site with Django 2.2 This is simple database model like this class Bookmark(models.Model): url =

Re: translation.E005 / Should LANGUAGES_BIDI be a strict subset of LANGUAGES?

2019-04-23 Thread Mariusz Felisiak
I'm fine with removing this check and merge PR11244 prepared by Matthias. Any concerns? -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from

Re: Proposal to format Django using black

2019-04-23 Thread Sam Cooke
On projects I've been working on I started using "prettier" fro JavaScript and it made a huge difference to code consistency across the team, which was great, but my favourite benefit (that I'm not sure I've seen mentioned much here) is I can write code faster if I don't have to format it. Being