This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients jnoller, sbt, vstinner
Date 2014-03-19.10:52:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395226358.4.0.442423011029.issue20978@psf.upfronthosting.co.za>
In-reply-to
Content
I ran pyflakes on Python 3.5. Attached patch fixes some undefined names warnings.

I don't know what to with these two warnings, they look to be false positive:

diff -r 72889bf8531d Lib/multiprocessing/spawn.py
--- a/Lib/multiprocessing/spawn.py      Tue Mar 18 13:21:29 2014 +0100
+++ b/Lib/multiprocessing/spawn.py      Wed Mar 19 11:49:24 2014 +0100
@@ -64,6 +64,7 @@ def freeze_support():
     Run code for process object if this in not the main process
     '''
     if is_forking(sys.argv):
+        # FIXME: main() is undefined
         main()
         sys.exit()
 
diff -r 72889bf8531d Lib/multiprocessing/synchronize.py
--- a/Lib/multiprocessing/synchronize.py        Tue Mar 18 13:21:29 2014 +0100
+++ b/Lib/multiprocessing/synchronize.py        Wed Mar 19 11:50:50 2014 +0100
@@ -51,7 +51,6 @@ class SemLock(object):
     _rand = tempfile._RandomNameSequence()
 
     def __init__(self, kind, value, maxvalue, *, ctx):
-        ctx = ctx or get_context()
         ctx = ctx.get_context()
         unlink_now = sys.platform == 'win32' or ctx._name == 'fork'
         for i in range(100):
History
Date User Action Args
2014-03-19 10:52:38vstinnersetrecipients: + vstinner, jnoller, sbt
2014-03-19 10:52:38vstinnersetmessageid: <1395226358.4.0.442423011029.issue20978@psf.upfronthosting.co.za>
2014-03-19 10:52:38vstinnerlinkissue20978 messages
2014-03-19 10:52:38vstinnercreate