[issue22488] 3.4 rc2 docs download link broken

2014-09-24 Thread Senthil Kumaran
New submission from Senthil Kumaran: Reported by John Jeffers on docs mailing list. https://docs.python.org/3.4/download.html (3.4.2rc1) Return Error 404 (Your other pages are fine)! -- messages: 227493 nosy: larry, orsenthil priority: normal severity: normal status: open title: 3.4 r

[issue22488] 3.4 rc2 docs download link broken

2014-09-24 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Build doc archives for RC versions ___ Python tracker ___ _

[issue22484] Build doc archives for RC versions, docs download broken for 3.4.2rc1

2014-09-24 Thread Ned Deily
Ned Deily added the comment: This problem is currently resulting in 404's for 3.4.2rc1 documention downloads, e.g. the links on: https://docs.python.org/3.4/download.html -- nosy: +ned.deily priority: high -> critical title: Build doc archives for RC versions -> Build doc archives for

[issue22484] Build doc archives for RC versions, docs download broken for 3.4.2rc1

2014-09-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8ce21ffc6df5 by Benjamin Peterson in branch '3.4': allow archives for rc releases to be built (closes #22484) https://hg.python.org/cpython/rev/8ce21ffc6df5 New changeset 7d6297450943 by Benjamin Peterson in branch 'default': merge 3.4 (#22484) http

[issue16662] load_tests not invoked in package/__init__.py

2014-09-24 Thread Robert Collins
Robert Collins added the comment: Fix up the tests patch - tested on windows 7. -- Added file: http://bugs.python.org/file36713/fix-windows-tests.patch ___ Python tracker ___ ___

[issue16662] load_tests not invoked in package/__init__.py

2014-09-24 Thread Robert Collins
Robert Collins added the comment: bah, wrong extension to trigger review code :) -- Added file: http://bugs.python.org/file36714/fix-windows-tests.diff ___ Python tracker ___ ___

[issue16662] load_tests not invoked in package/__init__.py

2014-09-24 Thread Robert Collins
Changes by Robert Collins : Removed file: http://bugs.python.org/file36713/fix-windows-tests.patch ___ Python tracker ___ ___ Python-bugs-list

[issue22489] .gitignore file

2014-09-24 Thread Robert Collins
New submission from Robert Collins: The .gitignore file was missing some build products on windows. The attached patch makes the tree be clean after doing a debug build. -- files: windows-git-ignore.diff keywords: patch messages: 227498 nosy: rbcollins priority: normal severity: normal

[issue22457] load_tests not invoked in root __init__.py when start=package root

2014-09-24 Thread Robert Collins
Robert Collins added the comment: Updated patch - fixes windows tests for this patch. -- Added file: http://bugs.python.org/file36716/issue22457.diff ___ Python tracker ___ _

[issue19746] No introspective way to detect ModuleImportFailure in unittest

2014-09-24 Thread Robert Collins
Robert Collins added the comment: Right: the existing code stringifies the original exception and creates an exception object and a closure def test_thing(self): raise exception_obj but that has the stringified original exception. -- ___ Python

[issue5550] [urllib.request]: Comparison of HTTP headers should be insensitive to the case

2014-09-24 Thread karl
karl added the comment: OK after fixing my repo (Thanks orsenthil) I got the tests running properly. The inspection order of the two dictionary was not right, so I had to modify a bit the patch. → ./python.exe -m unittest -v Lib.test.test_urllib2net.OtherNetworkTests.test_headers_case_sensiti

[issue5550] [urllib.request]: Comparison of HTTP headers should be insensitive to the case

2014-09-24 Thread karl
Changes by karl : Removed file: http://bugs.python.org/file36698/issue-5550-4.patch ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue21566] make use of the new default socket.listen() backlog argument

2014-09-24 Thread Yury Selivanov
Yury Selivanov added the comment: Guys, when you update asyncio code, please make sure you sync your changes with its upstream here: https://code.google.com/p/tulip/ to avoid commits like this 5f001ad90373 The goal is to have single source base for 3.4 and 3.5 in cpython repo and for 3.3 in t

[issue21645] asyncio: Race condition in signal handling on FreeBSD

2014-09-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset fe456770b454 by Yury Selivanov in branch 'default': asyncio: Reverting 69d474dab479 as issue #21645 is now closed and debug is no longer needed https://hg.python.org/cpython/rev/fe456770b454 -- ___ Pytho

[issue22489] .gitignore file

2014-09-24 Thread Ned Deily
Changes by Ned Deily : -- nosy: +zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue15799] httplib client and statusline

2014-09-24 Thread karl
karl added the comment: Let's close this. >>> "HTTP/1.1301 ".split(None, 2) ['HTTP/1.1', '301'] >>> "HTTP/1.1301 ".split(' ', 2) ['HTTP/1.1', '', ' 301 '] I think it would be nice to have a way to warn without stopping, but the last comment from r.david.murray makes sense too. :) ---

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2014-09-24 Thread Tim Smith
New submission from Tim Smith: Homebrew, the OS X package manager, distributes python3 as a framework build. We like to be able to control the shebang that gets written to scripts installed with pip. [1] The path we prefer for invoking the python3 interpreter is like /usr/local/opt/python3/bi

[issue17319] http.server.BaseHTTPRequestHandler send_response_only doesn't check the type and value of the code.

2014-09-24 Thread karl
karl added the comment: Where this is defined in the new RFC. http://tools.ietf.org/html/rfc7230#section-3.1.2 status-line = HTTP-version SP status-code SP reason-phrase CRLF Things to enforce status-code= 3DIGIT Response status code are now defined in http://tools.ietf.org/ht

[issue22486] Speed up fractions.gcd()

2014-09-24 Thread Mark Dickinson
Mark Dickinson added the comment: In case it's useful, see issue #1682 for my earlier Lehmer gcd implementation. At the time, that approach was dropped as being premature optimisation. -- nosy: +mark.dickinson ___ Python tracker

[issue22491] Support Unicode line boundaries in regular expression

2014-09-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Currently regular expressions support on '\n' as line boundary. To meet Unicode standard requirement RL1.6 [1] all Unicode line separators should be supported: '\n', '\r', '\v', '\f', '\x85', '\u2028', '\u2029' and two-character '\r\n'. Also it is recommen

<    1   2