[issue29329] Incorrect documentation for custom `hex()` support on Python 2

2017-02-01 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Pekka, Eryk, Ammar, and Zachary :) -- status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.or

[issue29329] Incorrect documentation for custom `hex()` support on Python 2

2017-02-01 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- resolution: -> fixed stage: commit review -> resolved ___ Python tracker <rep...@bugs.python.org> <http://bugs.

[issue29381] Tutorial documentation contains undefined reference to #!

2017-02-01 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Jim, Marco, and Raymond :) -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29381> ___ __

[issue29371] Typo in doctest documentation

2017-02-06 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Marco, Jim, and Raymond :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29314] asyncio.async deprecation warning is missing stacklevel=2

2017-02-06 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks all :) -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-07 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: You're right, Victor :) The wording in 2.7 is a little bit different, but should be fixed too. In 2.7: These method have the same issues as the iterkeyrefs() and keyrefs() methods of WeakKeyDictionary objects. Assigning this to myself. -- assignee

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-07 Thread Mariatta Wijaya
New submission from Mariatta Wijaya: https://docs.python.org/3/library/weakref.html?highlight=weakref#weakref.WeakValueDictionary There are grammatical errors in the sentence: These method have the same issues as the and keyrefs() method of WeakKeyDictionary objects. Reported by Arthur

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-08 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks for reviewing, Marco :) Updated the patch. -- Added file: http://bugs.python.org/file46597/issue29474py3-2.patch ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue29506] Incorrect documentation for the copy module

2017-02-08 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: How about ``` Because deep copy copies everything, it may copy too much, including the administrative data structures. ``` ? -- nosy: +Mariatta ___ Python tracker <rep...@bugs.python.org> <http://bugs.p

[issue29506] Incorrect documentation for the copy module

2017-02-08 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- stage: -> needs patch versions: -Python 3.3, Python 3.4 ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue18842] Add float.is_finite is_nan is_infinite to match Decimal methods

2017-02-02 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Martin, I reviewed the patch (rm-finite.patch) and ran the tests. The patch no longer applies cleanly to the default branch, but otherwise looks good. Assigning this back to you as per Raymond's suggestion. Thanks :) -- assignee: Mariatta

[issue29371] Typo in doctest documentation

2017-02-06 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Raymond. I have an updated patch there the hypen and apostrophe are removed. -- versions: -Python 3.3, Python 3.4 Added file: http://bugs.python.org/file46552/issue29371v2.patch ___ Python tracker <

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-07 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: And here is the patch that fixes the issue for python 2.7. -- Added file: http://bugs.python.org/file46571/issue29474py2.patch ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-07 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Attached is the patch to fix the grammatical errors for versions 3.5+ -- keywords: +patch Added file: http://bugs.python.org/file46570/issue29474py3.patch ___ Python tracker <rep...@bugs.python.org>

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-07 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29371] Typo in doctest documentation

2017-02-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Hi everyone, I made a patch to clarify that "or'ed" here really means "bitwise-OR'ed", and made a reference to the section of the docs about bitwise OR. Please review and let me know if this will work. Thanks. -- keywords: +pa

[issue29371] Typo in doctest documentation

2017-02-05 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29381] Tutorial documentation contains undefined reference to #!

2017-01-30 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks all for the feedback. I updated the patch. Marco, IMO it's not necessary to update the PEP. This section of the documentation serves as a tutorial for it, and the update in this patch clarifies the situation. -- Added file: http

[issue29381] Tutorial documentation contains undefined reference to #!

2017-01-29 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: There are certain rules about the encoding declaration line. It has to be the first line of the source code, or in the case that the file starts with a unix "shebang" line, then the encoding declaration has to be on the second line. In fact,

[issue29381] Tutorial documentation contains undefined reference to #!

2017-01-29 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks for the feedback, Raymond. I adjusted my patch. -- Added file: http://bugs.python.org/file46453/issue29381v2.patch ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue29314] asyncio.async deprecation warning is missing stacklevel=2

2017-01-20 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Attached patch adds stacklevel=2 to the deprecation warning. -- keywords: +patch nosy: +Mariatta Added file: http://bugs.python.org/file46369/issue29314.patch ___ Python tracker <rep...@bugs.python.org>

[issue23670] Modifications to support iOS as a cross-compilation target

2017-02-21 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- nosy: +Mariatta ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue23670> ___

[issue29549] Improve docstring for str.index

2017-02-22 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: CuriousLearner, I see that you have PRs against this issue. The issue is currently assigned to Lisa. I respectfully request that you choose a different issue to work on and to withdraw your pull request. Please choose an issue that is not currently assigned

[issue29237] Create enum for pstats sorting options

2017-02-19 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thank you, Ratnadeep. I've been assigned to this issue, and have made some progress on it. I'm away for a conference right now, and I plan on getting back once I'm back. Will it be possible for you to work on a different issue? Thanks

[issue29595] Expose max_queue_size in ThreadPoolExecutor

2017-02-18 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- components: +Library (Lib) versions: +Python 3.7 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28556] typing.py upgrades

2017-02-23 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +242 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28556] typing.py upgrades

2017-02-23 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +241 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29642] Why does unittest.TestLoader.discover still rely on existence of __init__.py files?

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- versions: -Python 3.4 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29648] Missed reference to create_module() in versionadded (import.rst)

2017-02-25 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +260 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue26184] Add versionchanged note for error when create_module() is not defined by loaders

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +247 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29648] Missed reference to create_module() in versionadded (import.rst)

2017-02-25 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Marco. Your change looks good to me. I'm now wondering if this should have been 'versionchanged' instead of 'versionadded'. Perhaps other core devs can confirm this. Thanks :) -- assignee: -> docs@python components: +Documentation n

[issue28929] Provide a link from documentation back to its source file

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +254 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28929] Provide a link from documentation back to its source file

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +255 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28929] Provide a link from documentation back to its source file

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +256 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28587] list.index documentation missing start and stop arguments

2017-02-25 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +266 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28587] list.index documentation missing start and stop arguments

2017-02-25 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: I backported these changes to 3.5 branch. Please let me know if this is ok. Thanks. -- versions: +Python 3.5 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue29549] Improve docstring for str.index

2017-02-23 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks for the PR, Lisa. Serhiy, Raymond, could you both review this? Thanks. I can do the merge and backport once it gets both of your approval :) Also,should this be applied to 3.5 too? -- ___ Python tracker

[issue29613] Support for SameSite Cookies

2017-02-21 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- versions: -Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29453] Remove reference to undefined dictionary ordering in Tutorial

2017-02-21 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 9b49133082ec23b67e84d2589e66d7810018e424 by GitHub in branch '3.6': bpo-29453: Remove reference to undefined dictionary ordering in Tutorial (GH-140) (#208) https://github.com/python/cpython/commit/9b49133082ec23b67e84d2589e66d7810018e424

[issue29453] Remove reference to undefined dictionary ordering in Tutorial

2017-02-21 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks everyone. PR has been merged and backported to 3.6 :) Closing this issue. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.pytho

[issue29613] Support for SameSite Cookies

2017-02-21 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29453] Remove reference to undefined dictionary ordering in Tutorial

2017-02-20 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +177 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29453] Remove reference to undefined dictionary ordering in Tutorial

2017-02-20 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 32e8f9bdfd4324f1aa4fbbdf1ed8536f2b00cabb by Mariatta in branch 'master': bpo-29453: Remove reference to undefined dictionary ordering in Tutorial (GH-140) https://github.com/python/cpython/commit/32e8f9bdfd4324f1aa4fbbdf1ed8536f2b00cabb

[issue27788] platform module's version number doesn't match its docstring

2017-02-22 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- versions: +Python 3.7 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue22594] Add a link to the regex module in re documentation

2017-02-22 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- versions: +Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28929] Provide a link from documentation back to its source file

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +37 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28929] Provide a link from documentation back to its source file

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +36 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28929] Provide a link from documentation back to its source file

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- versions: +Python 2.7, Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28929] Provide a link from documentation back to its source file

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +35 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28941] Update the link to Source Code in Python Docs from hg to github

2017-02-13 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: This was addressed in the very first pull request on CPython GitHub (Thanks, Brett ) Backported to 2.7, 3.5, and 3.6 -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tra

[issue28941] Update the link to Source Code in Python Docs from hg to github

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- assignee: docs@python -> Mariatta ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue28929] Provide a link from documentation back to its source file

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +38 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +42 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +41 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +39 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +40 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-12 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, everyone :) The GitHub PRs have been merged. Closing this issue. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.pytho

[issue29387] Tabs vs spaces FAQ out of date

2017-02-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 38c8354f3204441f6c6bd22213b449d2d8954fcc by GitHub in branch '3.5': bpo-29521 Fix two minor documentation build warnings (#41) (#84) https://github.com/python/cpython/commit/38c8354f3204441f6c6bd22213b449d2d8954fcc -- nosy: +Mariatta

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +70 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +71 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +72 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29521] Minor warning messages when compiling documentation

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +69 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Raymond :) I prepared the pull requests for 3.5, 3.6, and master branches. Thomas, you mentioned about needing to go over CLA with your employer in your PR. Not sure if you have any update on that? If your CLA is approved, I can merge and cherry

[issue29521] Minor warning messages when compiling documentation

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +73 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29521] Minor warning messages when compiling documentation

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +74 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28929] Provide a link from documentation back to its source file

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +75 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Thomas :) I'll let you close your own PR on GitHub. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue28929] Provide a link from documentation back to its source file

2017-02-12 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks all :) PRs have been merged on GitHub. Closing this. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 7224a049b88ed37c510861528147e0db54911bb7 by GitHub in branch '3.6': bpo-29481: add versionadded 3.6.1 to typing.Deque docs (#108) https://github.com/python/cpython/commit/7224a049b88ed37c510861528147e0db54911bb7

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset bb53a27a5d56a4f33c3fc8eebb486b34808c92b7 by GitHub in branch '3.5': [cherry-pick for 3.5] bpo-29481: add versionadded 3.5.4 to typing.Deque docs (#109) https://github.com/python/cpython/commit/bb53a27a5d56a4f33c3fc8eebb486b34808c92b7

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 36da1c3589e1bc4246cccf6bd0094a110416a43a by GitHub in branch 'master': bpo-29481: add versionadded 3.6.1 to typing.Deque docs (#107) https://github.com/python/cpython/commit/36da1c3589e1bc4246cccf6bd0094a110416a43a

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Merged and backported to 3.5 and 3.6. Thanks all :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29648] Missed reference to create_module() in versionadded (import.rst)

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +276 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue26184] Add versionchanged note for error when create_module() is not defined by loaders

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +281 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue22594] Add a link to the regex module in re documentation

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +278 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29648] Missed reference to create_module() in versionadded (import.rst)

2017-02-26 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks for the clarification, Nick :) Marco, I merged your PR, and backported to 3.5 and 3.6 branches. Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tra

[issue22594] Add a link to the regex module in re documentation

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +282 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29648] Missed reference to create_module() in versionadded (import.rst)

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +275 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue22594] Add a link to the regex module in re documentation

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +277 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28791] update sqlite to 3.17.0

2017-02-28 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Big Stone. Setting the version to 3.7. -- versions: -Python 3.6 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue26184] Add versionchanged note for error when create_module() is not defined by loaders

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +285 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue26184] Add versionchanged note for error when create_module() is not defined by loaders

2017-02-26 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Merged and backported to 3.6. Closing this issue :) Thanks. -- nosy: +Mariatta resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker <rep...@bugs.pytho

[issue26184] Add versionchanged note for error when create_module() is not defined by loaders

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- pull_requests: +286 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue29659] Expose the `length` arg from shutil.copyfileobj for public use

2017-02-27 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- components: +Library (Lib) ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28791] update sqlite to 3.15.2

2017-02-27 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Is this something we want to include for the upcoming 3.6.1 release? The latest sqlite version is 3.17.0. -- nosy: +Mariatta ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue26149] Suggest PyCharm Community as an editor for Unix platforms

2016-09-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Mention Pycharm community edition, and provide link to the wiki -- keywords: +patch nosy: +Mariatta Wijaya Added file: http://bugs.python.org/file44686/docupdate.patch ___ Python tracker <rep...@bugs.python.

[issue28294] HTTPServer server.py assumes sys.stderr != None

2016-09-29 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: I'm interested to work on a patch for this, if no one started yet. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue26869] unittest longMessage docs

2016-09-28 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- nosy: +Mariatta ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue26869> ___

[issue28281] Remove year limits from calendar

2016-09-28 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- nosy: +Mariatta ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28281> ___

[issue28294] HTTPServer server.py assumes sys.stderr != None

2016-09-29 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: use the logging module instead of sys.stderr -- keywords: +patch Added file: http://bugs.python.org/file44890/issue28294.patch ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-09-29 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Updated the documentation to use instead of ? I also went through other examples in the page and fixed those too. -- keywords: +patch Added file: http://bugs.python.org/file44885/issue28315.patch ___ Python

[issue21879] str.format() gives poor diagnostic on placeholder mismatch

2016-09-29 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- nosy: +Mariatta ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue21879> ___

[issue28353] os.fwalk() unhandled exception when error occurs accessing symbolic link target

2016-10-04 Thread Mariatta Wijaya
Changes by Mariatta Wijaya <mariatta.wij...@gmail.com>: -- nosy: +Mariatta ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28353> ___

[issue24452] Make webbrowser support Chrome on Mac OS X

2016-10-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Well... I created a patch based on Ned's code :) This now works in the default branch Python 3.7.0a0 (default:f2204eaba685+, Oct 5 2016, 20:43:44) [GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)] on darwin Type "help", "copyr

[issue27825] Make the documentation for statistics' data argument clearer.

2016-10-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Updated the docs and updated the example codes as well. Please review :) -- keywords: +patch nosy: +Mariatta Added file: http://bugs.python.org/file44979/issue27825.patch ___ Python tracker <rep...@bugs.python.

[issue24459] Mention PYTHONFAULTHANDLER in the man page

2016-10-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Hi Joshua, Seems like your latest patch doesn't apply cleanly to the default branch. Can you rebase and upload a new patch? Thanks. -- nosy: +Mariatta ___ Python tracker <rep...@bugs.python.org>

[issue27859] argparse - subparsers does not retain namespace

2016-10-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Seems like this can be closed. Thanks. -- nosy: +Mariatta ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue9850] obsolete macpath module dangerously broken and should be removed

2016-10-04 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: I'm just reading PEP-4 now for procedure of declaring a module deprecated. Should PEP-4 page be updated with the proposal / info for macpath deprecation? https://www.python.org/dev/peps/pep-0004/ Thanks

[issue28362] Deprecation warning doesn't stand out enough

2016-10-04 Thread Mariatta Wijaya
New submission from Mariatta Wijaya: In documentation for python 3.3, the deprecation warning is rendered in a red box which is more eye-catching. eg https://docs.python.org/3.3/library/imp.html?highlight=imp#module-imp But since python 3.4 onwards, seems like the red box disappears

[issue17188] Document 'from None' in raise statement doc.

2016-10-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: reuploaded thomir's patch issue17188_3.4.patch as is. I take no credit for this. -- Added file: http://bugs.python.org/file44967/issue17188_by_thomir.patch ___ Python tracker <rep...@bugs.python.org>

  1   2   3   4   5   6   7   8   9   10   >