Re: Refactoring the autoreloader

2017-10-02 Thread François Freitag
Hi Tom, Thank you for the great summary. > 2. Add support for the "watchdog" library as a replacement for > pyinotify. Watchdog implements file system notifications for all major > platforms using a fairly simple API, so we can remove polling and have > instant reloading. Also support Watchman,

Re: Adding support for postgres 10

2017-10-02 Thread Tim Graham
Do you want to implement something specific? Generally, whoever wants to implement something will offer a plan. On Sunday, October 1, 2017 at 7:39:42 AM UTC-4, Amir Reza Ghods wrote: > > Postgres 10 is coming with some exciting features such as native > partitioning. Would it be a good idea to

Re: about ticket 28588- has_perm hide non-existent permissions

2017-10-02 Thread Florian Apolloner
Hi, On Monday, October 2, 2017 at 2:24:31 PM UTC+2, moshe nahmias wrote: > > If yes I think I have a good solution, I will return on the check if perm > in Permission.all() > Where exactly do you propose to do that? Here:

Re: about ticket 28588- has_perm hide non-existent permissions

2017-10-02 Thread moshe nahmias
Thanks for the corrections and input. If I will keep the check and return False if the permission doesn't exist, will it be OK? If yes I think I have a good solution, I will return on the check if perm in Permission.all() So instead of: return True we will have: return perm in