[issue28791] update sqlite to 3.15.2

2016-11-29 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- components: +Installation, Windows, macOS nosy: +ned.deily, paul.moore, ronaldoussoren, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue28

[issue28208] update sqlite to 3.14.2

2016-11-29 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: sqlite 3.15.2 was just released. I can prepare a patch if that's what we want. -- ___ Python tracker <http://bugs.python.org/is

[issue28794] inspect.isasyncgen and inspect.isasyncgenfunction aren't documented

2016-12-02 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Can anyone review this please? :) Thanks. -- ___ Python tracker <http://bugs.python.org/issue28794> ___ ___ Python-bugs-list m

[issue28089] Document TCP_NODELAY by default

2016-12-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: The change is that TCP_NODELAY option is set by default in 3.6. It was not the case in 3.5. -- ___ Python tracker <http://bugs.python.org/issue28

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: I added the following to Doc/library/asyncio-protocol.rst .. versionchanged:: 3.6.0 The socket option TCP_NODELAY is now set by default. Let me know if this patch works. -- keywords: +patch Added file: http://bugs.python.org/file45770/issue28089

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Berker :) Updated. -- Added file: http://bugs.python.org/file45772/issue28089v2.patch ___ Python tracker <http://bugs.python.org/issue28

[issue28900] update 'docs for other versions'

2016-12-07 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: If it's ok, I'd like to work on a patch for this :) -- nosy: +Mariatta ___ Python tracker <http://bugs.python.o

[issue28900] update 'docs for other versions'

2016-12-07 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: No prob. Thanks, Ned. -- ___ Python tracker <http://bugs.python.org/issue28900> ___ ___ Python-bugs-list mailing list Unsub

[issue28917] Docs: Add missing protocol to pickle

2016-12-08 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Hi, isn't it documented here? https://docs.python.org/3.7/library/pickle.html#pickle.Pickler "If a negative number is specified, HIGHEST_PROTOCOL is selected." ------ nosy: +Mariatta ___ Python

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

2016-12-09 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: On the left menu, there's already a Show Source link. Is the idea to replace that link to github.com/python/cpython/blob/ ? Or, are you thinking about adding a new link under the main heading, similar to **Source code:** :source:`Lib/abc.py` but fo

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

2016-12-10 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Brett :) I think it's easier to update the existing Source Link to github. I'll work on a patch for this. -- ___ Python tracker <http://bugs.python.o

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

2016-12-10 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Hi, This patch updates the Show Source link on the left of Docs menu and point it to github. I tested it locally, and works for versions >= 3.5 Please let me know if you have any feedback about this. Thanks :) Not sure if the older docs versions should

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

2016-12-11 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Brett. Here's the patch that will work for the 2.7 branch. -- Added file: http://bugs.python.org/file45854/issue28929-v27.patch ___ Python tracker <http://bugs.python.org/is

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

2016-12-11 Thread Mariatta Wijaya
New submission from Mariatta Wijaya: Some Python docs include a link to the Source Code, for example: https://docs.python.org/3.6/library/abc.html Once the repo is moved to github, the link should probably be updated to point to github: https://github.com/python/cpython/blob/master/Lib/abc.py

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

2016-12-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- nosy: +brett.cannon ___ Python tracker <http://bugs.python.org/issue28941> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2016-12-12 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: There's source code of the documentation itself https://github.com/python/cpython/blob/master/Doc/library/abc.rst ) for and source code of abc.py https://github.com/python/cpython/blob/master/Lib/abc.py Maybe I misunderstood, I figured issue #28929 i

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

2016-12-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Attached is the patch that will work for 3.6 and 3.7 branches. The url will be changed from https://hg.python.org/cpython/file/3.6/Lib/abc.py into https://github.com/python/cpython/blob/3.6/Lib/abc.py for python version 3.6, and https://github.com/python

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

2016-12-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Patch for 3.5 branch. The url will change from https://hg.python.org/cpython/file/3.5/Lib/abc.py into https://github.com/python/cpython/blob/3.5/Lib/abc.py -- Added file: http://bugs.python.org/file45905/issue28941v35.patch

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

2016-12-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Patch for 2.7 branch. The url will change from https://hg.python.org/cpython/file/2.7/Lib/abc.py into https://github.com/python/cpython/blob/2.7/Lib/abc.py -- Added file: http://bugs.python.org/file45906/issue28941v27.patch

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

2016-12-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Please let me know if I'm doing this right :) Thanks. -- ___ Python tracker <http://bugs.python.org/issue28941> ___ ___

[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 <http://bugs.python.org/issue29

[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, the fi

[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 <http://bugs.python.org/issue29

[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:

[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 <http://bugs.python.org/issue29381> ___ ___ Python-bugs-list mailin

[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 <http://bugs.python.org/issu

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

2017-02-01 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- resolution: -> fixed stage: commit review -> resolved ___ Python tracker <http://bugs.python.org/issue29329> ___ ___ Pyth

[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: Mar

[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. -- key

[issue29371] Typo in doctest documentation

2017-02-05 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue29371> ___ ___ Python-bugs-list mailing list Unsubscrib

[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 <h

[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 <http://bugs.python.or

[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 <http://bugs.python.or

[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-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. -- ass

[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 <http://bugs.python.org/issue29

[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 <http://bugs.python.org/issue29

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-07 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue29474> ___ ___ Python-bugs-list mailing list Unsubscrib

[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 <http://bugs.python.org/issue29

[issue29506] Incorrect documentation for the copy module

2017-02-08 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: -> needs patch versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue29506> ___ ___ Python-

[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 <http://bugs.python.org/issue29

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

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- versions: +Python 2.7, Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <http://bugs.python.org/issue28929> ___ ___ Python-bug

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

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +35 ___ Python tracker <http://bugs.python.org/issue28929> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +36 ___ Python tracker <http://bugs.python.org/issue28929> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +37 ___ Python tracker <http://bugs.python.org/issue28929> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +38 ___ Python tracker <http://bugs.python.org/issue28929> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +39 ___ Python tracker <http://bugs.python.org/issue29474> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +40 ___ Python tracker <http://bugs.python.org/issue29474> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +42 ___ Python tracker <http://bugs.python.org/issue29474> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +41 ___ Python tracker <http://bugs.python.org/issue29474> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-11 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- assignee: docs@python -> Mariatta ___ Python tracker <http://bugs.python.org/issue28941> ___ ___ Python-bugs-list mai

[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 <http://bugs.python.or

[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 <http://bugs.python.or

[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 track

[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:

[issue29521] Minor warning messages when compiling documentation

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +69 ___ Python tracker <http://bugs.python.org/issue29521> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +70 ___ Python tracker <http://bugs.python.org/issue29481> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +71 ___ Python tracker <http://bugs.python.org/issue29481> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +72 ___ Python tracker <http://bugs.python.org/issue29481> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 : -- pull_requests: +73 ___ Python tracker <http://bugs.python.org/issue29521> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29521] Minor warning messages when compiling documentation

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +74 ___ Python tracker <http://bugs.python.org/issue29521> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +75 ___ Python tracker <http://bugs.python.org/issue28929> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 <http://bugs.python.org/issue29481> ___ ___

[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/36da1c3589e1bc4246cccf6bd0094a

[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/7224a049b88ed37c510861528147e0

[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/bb53a27a5d56a4f33c3fc8eebb486b

[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 <http://bugs.python.or

[issue29595] Expose max_queue_size in ThreadPoolExecutor

2017-02-18 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- components: +Library (Lib) versions: +Python 3.7 ___ Python tracker <http://bugs.python.org/issue29595> ___ ___ Python-bugs-list m

[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 differen

[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/32e8f9bdfd4324f1aa4fbbdf1ed853

[issue29453] Remove reference to undefined dictionary ordering in Tutorial

2017-02-20 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +177 ___ Python tracker <http://bugs.python.org/issue29453> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-21 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- nosy: +Mariatta ___ Python tracker <http://bugs.python.org/issue23670> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29613] Support for SameSite Cookies

2017-02-21 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- versions: -Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6 ___ Python tracker <http://bugs.python.org/issue29

[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/9b49133082ec23b67e84d2589e66d7

[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 <http://bug

[issue29613] Support for SameSite Cookies

2017-02-21 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue29613> ___ ___ Python-bugs-list mailing list Unsubscrib

[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

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

2017-02-22 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- versions: +Python 3.7 ___ Python tracker <http://bugs.python.org/issue27788> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-22 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- versions: +Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <http://bugs.python.org/issue22594> ___ ___ Python-bugs-list m

[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

[issue28556] typing.py upgrades

2017-02-23 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +241 ___ Python tracker <http://bugs.python.org/issue28556> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28556] typing.py upgrades

2017-02-23 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +242 ___ Python tracker <http://bugs.python.org/issue28556> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +247 ___ Python tracker <http://bugs.python.org/issue26184> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- versions: -Python 3.4 ___ Python tracker <http://bugs.python.org/issue29642> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +254 ___ Python tracker <http://bugs.python.org/issue28929> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +255 ___ Python tracker <http://bugs.python.org/issue28929> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +256 ___ Python tracker <http://bugs.python.org/issue28929> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-25 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +260 ___ Python tracker <http://bugs.python.org/issue29648> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 com

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

2017-02-25 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +266 ___ Python tracker <http://bugs.python.org/issue28587> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 <http://bugs.python.org/issue28

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

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +275 ___ Python tracker <http://bugs.python.org/issue29648> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +276 ___ Python tracker <http://bugs.python.org/issue29648> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +277 ___ Python tracker <http://bugs.python.org/issue22594> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +278 ___ Python tracker <http://bugs.python.org/issue22594> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +281 ___ Python tracker <http://bugs.python.org/issue26184> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 ___ Pytho

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

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +282 ___ Python tracker <http://bugs.python.org/issue22594> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-26 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +285 ___ Python tracker <http://bugs.python.org/issue26184> ___ ___ Python-bugs-list mailing list Unsubscribe:

<    6   7   8   9   10   11   12   13   >