[issue23003] traceback.{print_exc, print_exception, format_exc, format_exception}: Potential AttributeError

2014-12-07 Thread Berker Peksag
Changes by Berker Peksag : -- keywords: +patch nosy: +berker.peksag stage: -> patch review type: -> behavior Added file: http://bugs.python.org/file37380/issue23003.diff ___ Python tracker <http://bugs.python.org/i

[issue23004] mock_open() should allow reading binary data

2014-12-07 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> needs patch type: -> behavior versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/i

[issue23008] pydoc enum.{,Int}Enum fails

2014-12-08 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +ethan.furman ___ Python tracker <http://bugs.python.org/issue23008> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1218234] inspect.getsource doesn't update when a module is reloaded

2014-12-08 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker <http://bugs.python.org/issue1218234> ___ ___ Python-bugs-list mailing list Un

[issue23021] Get rid of references to PyString in Modules/

2014-12-09 Thread Berker Peksag
New submission from Berker Peksag: See issue 22883 for a similar issue. Modules/_io/_iomodule.h:72:/* Printing a variable of type off_t (with e.g., PyString_FromFormat) Modules/_json.c:708:/* Read a JSON array from PyString pystr. Modules/_json.c:781:/* Read a JSON constant from

[issue1703178] link_objects in setup.cfg crashes build

2014-12-09 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> commit review ___ Python tracker <http://bugs.python.org/issue1703178> ___ ___ Python-bugs-list mai

[issue12602] Missing cross-references in Doc/using

2014-12-09 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Éric. -- assignee: eric.araujo -> berker.peksag nosy: +berker.peksag resolution: -> fixed stage: commit review -> resolved status: open -> closed type: behavior -> enhancement ___

[issue22823] Use set literals instead of creating a set from a list

2014-12-09 Thread Berker Peksag
Berker Peksag added the comment: Updated Serhiy's patch. -- nosy: +berker.peksag Added file: http://bugs.python.org/file37404/issue22823-mock.diff ___ Python tracker <http://bugs.python.org/is

[issue21775] shutil.copytree() crashes copying to VFAT on Linux: AttributeError: 'PermissionError' object has no attribute 'winerror'

2014-12-09 Thread Berker Peksag
Berker Peksag added the comment: Committed the patch with a NEWS entry. Thanks Greg. (You can send your SSH key to hgaccou...@python.org. See also https://docs.python.org/devguide/coredev.html#ssh) -- nosy: +berker.peksag resolution: -> fixed stage: commit review -> resolved

[issue23019] pyexpat.errors wrongly bound to message strings instead of message codes

2014-12-10 Thread Berker Peksag
Changes by Berker Peksag : -- keywords: +easy stage: resolved -> needs patch ___ Python tracker <http://bugs.python.org/issue23019> ___ ___ Python-bugs-list mai

[issue23027] test_warnings fails with -Werror

2014-12-10 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue23027> ___ ___ Python-bugs-list mai

[issue22225] Add SQLite support to http.cookiejar

2014-12-11 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> rejected stage: -> resolved ___ Python tracker <http://bugs.python.org/issue5> ___ ___ Python-bugs-list

[issue23024] Python Compile Error on Mac os X ld: unknown option: -export-dynamic

2014-12-11 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> not a bug stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker <http://bugs.python

[issue22095] Use of set_tunnel with default port results in incorrect post value in host header

2014-12-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue22095> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9536] defaultdict doc makes incorrect reference to __missing__ method

2014-12-12 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> resolved ___ Python tracker <http://bugs.python.org/issue9536> ___ ___ Python-bugs-list mailing list Un

[issue23047] typo in pyporting.rst

2014-12-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Xavier and thanks for the patch, Chaitanya. -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 2.7, Python 3.4 ___ Python track

[issue23052] python2.7.9 [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)

2014-12-14 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> not a bug status: open -> closed type: crash -> behavior ___ Python tracker <http://bugs.python.or

[issue22826] Support context management protocol in bkfile

2014-12-15 Thread Berker Peksag
Berker Peksag added the comment: The second patch raises "RuntimeError: maximum recursion depth exceeded" if the target file is exist. File "/home/berker/projects/cpython/default/Tools/freeze/bkfile.py", line 18, in close f.close() RuntimeError: max

[issue23004] mock_open() should allow reading binary data

2014-12-15 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue23004> ___ ___ Python-bugs-list mailing list Un

[issue23062] test_argparse --version test cases

2014-12-15 Thread Berker Peksag
Berker Peksag added the comment: I think that your analysis is correct. Also, looks like the original test is problematic: https://code.google.com/p/argparse/source/browse/test/test_argparse.py#3710 Here is a patch to fix the test. -- keywords: +patch nosy: +berker.peksag, bethard

[issue23063] `python setup.py check --restructuredtext --strict --metadata` fails with: `warning: check: Could not finish the parsing.` if the RST document uses code or code-block directives.

2014-12-16 Thread Berker Peksag
Changes by Berker Peksag : -- keywords: +patch Added file: http://bugs.python.org/file37464/cfabe07bc98f.diff ___ Python tracker <http://bugs.python.org/issue23

[issue23063] `python setup.py check --restructuredtext --strict --metadata` fails with: `warning: check: Could not finish the parsing.` if the RST document uses code or code-block directives.

2014-12-16 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> patch review versions: -Python 3.2, Python 3.3, Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue23063] `python setup.py check --restructuredtext --strict --metadata` fails with: `warning: check: Could not finish the parsing.` if the RST document uses code or code-block directives.

2014-12-16 Thread Berker Peksag
Berker Peksag added the comment: Could you add a test? See Lib/distutils/tests/test_check.py. -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue23

[issue23071] codecs.__all__ incomplete

2014-12-16 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue23071> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23049] Fix functools.reduce code equivalent.

2014-12-16 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> resolved ___ Python tracker <http://bugs.python.org/issue23049> ___ ___ Python-bugs-list mailing list Un

[issue23070] Error in Tutorial comment

2014-12-17 Thread Berker Peksag
Berker Peksag added the comment: Fixed. Thanks for the report, Ross. -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior versions: +Python 2.7, Python 3.5 ___ Python tr

[issue19548] 'codecs' module docs improvements

2014-12-17 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue19548> ___ ___ Python-

[issue23071] codecs.__all__ incomplete

2014-12-17 Thread Berker Peksag
Berker Peksag added the comment: Thanks! Could you also add a test? See PublicAPITests in Lib/test/test_shutil.py as an example. -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issu

[issue23080] BoundArguments.arguments should be unordered

2014-12-18 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +yselivanov ___ Python tracker <http://bugs.python.org/issue23080> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23081] Document PySequence_List(o) as equivalent to list(o)

2014-12-18 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag, tim.peters ___ Python tracker <http://bugs.python.org/issue23081> ___ ___ Python-bugs-list mailing list Unsub

[issue23092] Python 2.7.9 test_readline regression on CentOS 6

2014-12-19 Thread Berker Peksag
Berker Peksag added the comment: This looks like a duplicate of issue 19884. -- nosy: +berker.peksag resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Importing readline produces erroneous output type:

[issue23071] codecs.__all__ incomplete

2014-12-20 Thread Berker Peksag
Berker Peksag added the comment: In 3.4, "namereplace_errors" needs to be removed in the test: https://hg.python.org/cpython/rev/2b642f2ca391#l2.17 == FAIL: test_all (test.test_codecs.Codecs

[issue23103] ipaddress should be Flyweight

2014-12-23 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +ncoghlan, pmoody ___ Python tracker <http://bugs.python.org/issue23103> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23122] python@93442 breaks build if system Python is 2.6

2014-12-27 Thread Berker Peksag
Berker Peksag added the comment: Could you try the following command? make touch See also https://docs.python.org/devguide/setup.html?highlight=touch#avoiding-re-creating-auto-generated-files -- nosy: +berker.peksag title: python@93442 breaks build if system Python is 2.6

[issue23122] python@93442 breaks build if system Python is 2.6

2014-12-27 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> resolved ___ Python tracker <http://bugs.python.org/issue23122> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue19539] The 'raw_unicode_escape' codec buggy + not appropriate for Python 3.x

2014-12-27 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> resolved superseder: -> 'codecs' module docs improvements ___ Python tracker <http://bugs.py

[issue23125] Link to the nose project obsolete

2014-12-28 Thread Berker Peksag
Berker Peksag added the comment: Fixed. Thanks for the report, Damien. -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 2.7 -Python 3.2, Python 3.3, Python 3.6 ___ Python track

[issue11638] python setup.py sdist --formats tar* crashes if version is unicode

2014-12-28 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: needs patch -> resolved ___ Python tracker <http://bugs.python.org/issue11638> ___ ___ Pyth

[issue20898] Missing 507 response description

2014-12-31 Thread Berker Peksag
Berker Peksag added the comment: I think the documentation part of the patch is still useful. -- components: +Documentation -Extension Modules nosy: +berker.peksag stage: -> commit review ___ Python tracker <http://bugs.python.org/issu

[issue15025] httplib and http.client are missing response messages for defined WEBDAV responses, e.g., UNPROCESSABLE_ENTITY (422)

2014-12-31 Thread Berker Peksag
Berker Peksag added the comment: This was fixed by issue 21793. -- nosy: +berker.peksag resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue18648] FP Howto and the PEP 8 lambda guildline

2014-12-31 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> resolved ___ Python tracker <http://bugs.python.org/issue18648> ___ ___ Python-bugs-list mailing list Un

[issue1500504] Alternate RFC 3986 compliant URI parsing module

2014-12-31 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue1500504> ___ ___ Python-bug

[issue2292] Missing *-unpacking generalizations

2014-12-31 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue2292> ___ ___ Python-bug

[issue18983] Specify time unit for timeit CLI

2015-01-02 Thread Berker Peksag
Berker Peksag added the comment: I've added a couple of comments on Rietveld. -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/is

[issue23166] urllib2 ignores opener configuration under certain circumstances

2015-01-04 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. Could you provide an example to reproduce the issue you described? -- nosy: +berker.peksag, orsenthil ___ Python tracker <http://bugs.python.org/issue23

[issue18644] Got ResourceWarning: unclosed file when using test function from formatter module

2015-01-04 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Vajrasky. -- components: +Library (Lib) -Tests nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.5 ___ Python track

[issue13248] deprecated in 3.2/3.3, should be removed in 3.5 or ???

2015-01-04 Thread Berker Peksag
Berker Peksag added the comment: Here is a follow-up list: * formatter module (will be removed in Python 3.6) * asynchat.fifo() (will be removed in Python 3.6) * buffering argument of bz2.BZ2File() (deprecated in 2011) * tarfile.filemode() (deprecated in 2012) * SO config var

[issue18644] Got ResourceWarning: unclosed file when using test function from formatter module

2015-01-05 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the suggestion, Eric. contextlib.closing(open(...)) looks unnecessary to me. Here is an alternative patch. -- Added file: http://bugs.python.org/file37601/issue18644.diff ___ Python tracker <h

[issue20487] Odd words in unittest.mock document.

2015-01-05 Thread Berker Peksag
Berker Peksag added the comment: Here is a patch to address msg211296. -- keywords: +patch nosy: +berker.peksag stage: -> patch review type: -> enhancement versions: -Python 3.3 Added file: http://bugs.python.org/file37602/issue2048

[issue20898] Missing 507 response description

2015-01-05 Thread Berker Peksag
Berker Peksag added the comment: LGTM. Great patch, thanks! -- assignee: -> berker.peksag ___ Python tracker <http://bugs.python.org/issue20898> ___ ___ Py

[issue23175] logging.exception doesn't accept custom exc_info

2015-01-06 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +vinay.sajip ___ Python tracker <http://bugs.python.org/issue23175> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21741] Convert most of the test suite to using unittest.main()

2015-01-06 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue21741> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22935] Disabling SSLv3 support

2015-01-06 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> resolved ___ Python tracker <http://bugs.python.org/issue22935> ___ ___ Python-bugs-list mailing list Un

[issue23185] add inf and nan to math module

2015-01-07 Thread Berker Peksag
Changes by Berker Peksag : -- components: +Library (Lib) stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue23185> ___ ___ Python-bugs-lis

[issue20487] Odd words in unittest.mock document.

2015-01-07 Thread Berker Peksag
Berker Peksag added the comment: Fixed. Thank you to both Andrew and Michael. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue23193] Please support "numeric_owner" in tarfile

2015-01-09 Thread Berker Peksag
Berker Peksag added the comment: The patch also needs documentation update for TarFile.extract(): https://docs.python.org/3/library/tarfile.html#tarfile.TarFile.extract The tarfile documentation is located at Doc/library/tarfile.rst. -- nosy: +berker.peksag

[issue22986] Improved handling of __class__ assignment

2015-01-09 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +benjamin.peterson stage: -> patch review type: -> enhancement versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/i

[issue16192] ctypes - documentation example

2015-01-09 Thread Berker Peksag
Berker Peksag added the comment: > It's not correct that "[The c_int] type is an alias for the c_long type on > 32-bit systems". Actually it's an alias if int and long are the same size. It's already documented at https://docs.python.org/dev/library/ctypes.html#

[issue13742] Add a key parameter (like sorted) to heapq.merge

2015-01-09 Thread Berker Peksag
Berker Peksag added the comment: Hi Tommy, the patch is already committed to Python 3.5. See https://docs.python.org/3.5/library/heapq.html#heapq.merge -- nosy: +berker.peksag stage: patch review -> resolved ___ Python tracker &l

[issue23216] IDLE grep/find/replace source code needs docstrings

2015-01-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +terry.reedy stage: -> patch review ___ Python tracker <http://bugs.python.org/issue23216> ___ ___ Python-bugs-list mai

[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-01-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +terry.reedy stage: -> patch review ___ Python tracker <http://bugs.python.org/issue23218> ___ ___ Python-bugs-list mai

[issue4395] Document auto __ne__ generation; provide a use case for non-trivial __ne__

2015-01-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue4395> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21902] Docstring of math.acosh, asinh, and atanh

2015-01-11 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker <http://bugs.python.org/issue21902> ___ ___ Python-bugs-list mailing list Un

[issue23182] Update grammar tests to use new style for annotated function definitions

2015-01-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue23182> ___ _

[issue22977] Unformatted “Windows Error 0x%X” exception message on Wine

2015-01-12 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> patch review versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue22977> ___ _

[issue22932] email.utils.formatdate uses unreliable time.timezone constant

2015-01-12 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue22932> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15836] unittest assertRaises should verify excClass is actually a BaseException class

2015-01-12 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: patch review -> commit review versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue23235] run_tests.py doesn't set test.support.verbose correctly

2015-01-13 Thread Berker Peksag
New submission from Berker Peksag: "make buildbottest" uses Tools/scripts/run_tests.py and it doesn't set test.support.verbose to 0. Example output from a buildbot: [ 60/389] test_codecmaps_hk fetching http://www.pythontest.net/unicode/BIG5HKSCS-200

[issue23235] run_tests.py doesn't set test.support.verbose correctly

2015-01-13 Thread Berker Peksag
Berker Peksag added the comment: Here is a possible fix. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file37698/issue23235.diff ___ Python tracker <http://bugs.python.org/issu

[issue23235] run_tests.py doesn't set test.support.verbose correctly

2015-01-13 Thread Berker Peksag
Changes by Berker Peksag : Added file: http://bugs.python.org/file37699/issue23235.diff ___ Python tracker <http://bugs.python.org/issue23235> ___ ___ Python-bugs-list m

[issue23235] run_tests.py doesn't set test.support.verbose correctly

2015-01-13 Thread Berker Peksag
Changes by Berker Peksag : Removed file: http://bugs.python.org/file37698/issue23235.diff ___ Python tracker <http://bugs.python.org/issue23235> ___ ___ Python-bugs-list m

[issue20739] PEP 463 (except expression) implementation

2015-01-13 Thread Berker Peksag
Berker Peksag added the comment: Guido's comment about the PEP is at https://mail.python.org/pipermail/python-dev/2014-March/133118.html Can we close this and mark PEP 463 as rejected now? -- nosy: +berker.peksag ___ Python tracker

[issue23223] subprocess32 unable to be installed via pip

2015-01-13 Thread Berker Peksag
Berker Peksag added the comment: Quoting from https://code.google.com/p/python-subprocess32/: "Think you've found an issue? Please try to reproduce it using Python 3.4 and file it using http://bugs.python.org/. Work will be done upstream and backported to this project."

[issue23223] subprocess32 unable to be installed via pip

2015-01-13 Thread Berker Peksag
Berker Peksag added the comment: Here is a patch. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file37701/issue23223.diff ___ Python tracker <http://bugs.python.org/issu

[issue23234] refactor subprocess: use new OSError exceptions, factorize stdin.write() code

2015-01-13 Thread Berker Peksag
Changes by Berker Peksag : -- components: +Library (Lib) -Extension Modules nosy: +gregory.p.smith stage: -> patch review ___ Python tracker <http://bugs.python.org/issu

[issue23223] subprocess32 unable to be installed via pip

2015-01-13 Thread Berker Peksag
Berker Peksag added the comment: Oh, good point! I missed that, thanks. -- resolution: -> not a bug stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue22988] No error when yielding from `finally`

2015-01-14 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed ___ Python tracker <http://bugs.python.org/issue22988> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue20898] Missing 507 response description

2015-01-15 Thread Berker Peksag
Berker Peksag added the comment: This is mostly a documentation update. Documentation updates can be committed anytime. Also, feature freeze for 3.5 will be started by Beta 1, not Alpha 1 (see PEP 478). I'll commit the patch this weekend. T

[issue11835] python (x64) ctypes incorrectly pass structures parameter

2015-01-15 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> broken ctypes calling convention on MSVC / 64-bit Windows (large structs) ___ Python tracker <http://bugs.python

[issue23255] SimpleHTTPRequestHandler refactor for more extensible usage.

2015-01-17 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue23255] SimpleHTTPRequestHandler refactor for more extensible usage.

2015-01-17 Thread Berker Peksag
Berker Peksag added the comment: > +base_files = ['index.html', 'index.html'] I guess this should be ['index.htm', 'index.html']. -- ___ Python

[issue17840] base64_codec uses assert for runtime validity checks

2015-01-18 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: test needed -> patch review versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue17840] base64_codec uses assert for runtime validity checks

2015-01-18 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch. I left a couple of comments on Rietveld. -- ___ Python tracker <http://bugs.python.org/issue17840> ___ ___

[issue14218] include rendered output in addition to markup

2015-01-19 Thread Berker Peksag
Changes by Berker Peksag : -- keywords: +easy ___ Python tracker <http://bugs.python.org/issue14218> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20898] Missing 507 response description

2015-01-19 Thread Berker Peksag
Berker Peksag added the comment: Committed now, sorry about the delay. Thanks for the patch, Demian. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue22317] action argument is not documented in argparse add_subparser() docs

2015-01-19 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Mike. Anne, thank you for the ticket triage! The only missing place was the ArgumentParser.add_subparsers() documentation: https://docs.python.org/3/library/argparse.html#argparse.ArgumentParser.add_subparsers -- nosy

[issue20702] warning in cmdline.rst

2015-01-19 Thread Berker Peksag
Berker Peksag added the comment: I couldn't reproduce it with Sphinx 1.2.3. The only warning I got was Doc/whatsnew/3.4.rst:2138: WARNING: undefined label: idle (if the link has no caption the label must precede a section header) -- nosy: +berker.peksag resolution: -> out

[issue20898] Missing 507 response description

2015-01-19 Thread Berker Peksag
Berker Peksag added the comment: Good catch, thank you Martin. -- ___ Python tracker <http://bugs.python.org/issue20898> ___ ___ Python-bugs-list mailin

[issue23277] Cleanup unused and duplicate imports in tests

2015-01-19 Thread Berker Peksag
Berker Peksag added the comment: +1 for cleanup. -- nosy: +berker.peksag stage: -> patch review versions: +Python 3.4, Python 3.5 -Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue2292] Missing *-unpacking generalizations

2015-01-20 Thread Berker Peksag
Berker Peksag added the comment: > Python/ast.c:2433:5: error: ‘npositionals’ undeclared (first use in this > function) Line 2425 should be int i, nargs, nkeywords, npositionals, ngens; -- ___ Python tracker <http://bugs.python.org/

[issue12029] Catching virtual subclasses in except clauses

2015-01-21 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue12029> ___ ___ Python-bugs-list mailing list Un

[issue23078] unittest.mock patch autospec doesn't work on staticmethods

2015-01-22 Thread Berker Peksag
Berker Peksag added the comment: Looks like b6ea3dc89a78 is not a valid changeset. Could you attach a patch from the Mercurial repo? -- nosy: +berker.peksag versions: -Python 2.7 ___ Python tracker <http://bugs.python.org/issue23

[issue7334] ElementTree: file locking in Jython 2.5 (OSError on Windows)

2015-01-22 Thread Berker Peksag
Berker Peksag added the comment: > Should a new issue be opened or should this ticket be re-opened? It's a 3 years old backport, I'd say open a new issue. -- nosy: +berker.peksag ___ Python tracker <http://bugs.pyth

[issue5309] distutils doesn't parallelize extension module compilation

2015-01-22 Thread Berker Peksag
Berker Peksag added the comment: Here's a doc patch. -- nosy: +berker.peksag Added file: http://bugs.python.org/file37824/issue5309-doc.diff ___ Python tracker <http://bugs.python.org/i

[issue21862] cProfile command-line should accept "-m module_name" as an alternative to script path

2015-01-22 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue21862> ___ ___ Python-

[issue23300] httplib is using a method that doesn't exist

2015-01-23 Thread Berker Peksag
Berker Peksag added the comment: +class TestServer(TestCase): This can be a mixin. +def testHTTPWithConnectHostPost(self): Post -> Port? +self.conn = httplib.HTTP(host=constructor_host, port=constructor_port) or to make the test simpler, self.conn = httplib.H

[issue23255] SimpleHTTPRequestHandler refactor for more extensible usage.

2015-01-23 Thread Berker Peksag
Berker Peksag added the comment: > I would love to use HTTPStatus but for some reason http/__init__.py is devoid > of code related to it - > https://hg.python.org/cpython/file/31982d70a52a/Lib/http/__init__.py See the default branch: https://hg.python.org/cpython/file/default

[issue23300] httplib is using a method that doesn't exist

2015-01-23 Thread Berker Peksag
Berker Peksag added the comment: LGTM. -- stage: patch review -> commit review ___ Python tracker <http://bugs.python.org/issue23300> ___ ___ Python-bugs-lis

[issue23312] google thinks the docs are mobile unfriendly

2015-01-24 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue23312> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21548] pydoc -k IndexError on empty docstring

2015-01-24 Thread Berker Peksag
Berker Peksag added the comment: Here's a patch with tests. -- nosy: +berker.peksag stage: -> patch review Added file: http://bugs.python.org/file37841/issue21548.diff ___ Python tracker <http://bugs.python.org

<    20   21   22   23   24   25   26   27   28   29   >