ashb commented on issue #4305: [AIRFLOW-3397] Fix integrety error in rbac AirflowSecurityManager URL: https://github.com/apache/incubator-airflow/pull/4305#issuecomment-446218198 Ah, I'm too used to python3: ``` >>> x = 'foo' >>> x 'foo' >>> [x for x in ('bar','baz')] ['bar', 'baz'] >>> x 'foo' ``` But in Python2 it shadows as you say: ``` >>> x = 'foo' >>> x 'foo' >>> [x for x in ('bar','baz')] ['bar', 'baz'] >>> x 'baz' ``` Still, tests please!
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
