[issue31906] String literals next to each other does not cause error

2017-10-30 Thread Sam Lobel
Change by Sam Lobel : -- type: -> behavior ___ Python tracker <https://bugs.python.org/issue31906> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue31906] String literals next to each other does not cause error

2017-10-30 Thread Sam Lobel
New submission from Sam Lobel : This seems too obvious to have been missed, but also too strange behaviour to be on purpose. The following works for some reason (note there's no + between the words) >>> variable = "first" "second" >>> print(variable)

[issue25931] os.fork() command distributed in windows Python27 (in SocketServer module)

2015-12-22 Thread Sam Lobel
New submission from Sam Lobel: I ran into this bug while using multiprocessing in Flask, which deep down uses the SocketServer.py module. There's a call to os.fork() in the windows version , which obviously doesn't work. So SocketServer.py can't be used on windows. Maybe