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
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
Mariatta Wijaya added the comment:
Can anyone review this please? :)
Thanks.
--
___
Python tracker
<http://bugs.python.org/issue28794>
___
___
Python-bugs-list m
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
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
Mariatta Wijaya added the comment:
Thanks, Berker :)
Updated.
--
Added file: http://bugs.python.org/file45772/issue28089v2.patch
___
Python tracker
<http://bugs.python.org/issue28
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
Mariatta Wijaya added the comment:
No prob. Thanks, Ned.
--
___
Python tracker
<http://bugs.python.org/issue28900>
___
___
Python-bugs-list mailing list
Unsub
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
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
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
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
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
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
Changes by Mariatta Wijaya :
--
nosy: +brett.cannon
___
Python tracker
<http://bugs.python.org/issue28941>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
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
Mariatta Wijaya added the comment:
Please let me know if I'm doing this right :) Thanks.
--
___
Python tracker
<http://bugs.python.org/issue28941>
___
___
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
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
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
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:
Mariatta Wijaya added the comment:
Thanks, Jim, Marco, and Raymond :)
--
___
Python tracker
<http://bugs.python.org/issue29381>
___
___
Python-bugs-list mailin
Mariatta Wijaya added the comment:
Thanks, Pekka, Eryk, Ammar, and Zachary :)
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issu
Changes by Mariatta Wijaya :
--
resolution: -> fixed
stage: commit review -> resolved
___
Python tracker
<http://bugs.python.org/issue29329>
___
___
Pyth
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
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
Changes by Mariatta Wijaya :
--
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue29371>
___
___
Python-bugs-list mailing list
Unsubscrib
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
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
Mariatta Wijaya added the comment:
Thanks all :)
--
resolution: -> fixed
stage: commit review -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python.or
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
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
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
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
Changes by Mariatta Wijaya :
--
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue29474>
___
___
Python-bugs-list mailing list
Unsubscrib
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
Changes by Mariatta Wijaya :
--
stage: -> needs patch
versions: -Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue29506>
___
___
Python-
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
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
Changes by Mariatta Wijaya :
--
pull_requests: +35
___
Python tracker
<http://bugs.python.org/issue28929>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +36
___
Python tracker
<http://bugs.python.org/issue28929>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +37
___
Python tracker
<http://bugs.python.org/issue28929>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +38
___
Python tracker
<http://bugs.python.org/issue28929>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +39
___
Python tracker
<http://bugs.python.org/issue29474>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +40
___
Python tracker
<http://bugs.python.org/issue29474>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +42
___
Python tracker
<http://bugs.python.org/issue29474>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +41
___
Python tracker
<http://bugs.python.org/issue29474>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
assignee: docs@python -> Mariatta
___
Python tracker
<http://bugs.python.org/issue28941>
___
___
Python-bugs-list mai
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
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
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
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:
Changes by Mariatta Wijaya :
--
pull_requests: +69
___
Python tracker
<http://bugs.python.org/issue29521>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +70
___
Python tracker
<http://bugs.python.org/issue29481>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +71
___
Python tracker
<http://bugs.python.org/issue29481>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +72
___
Python tracker
<http://bugs.python.org/issue29481>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Changes by Mariatta Wijaya :
--
pull_requests: +73
___
Python tracker
<http://bugs.python.org/issue29521>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +74
___
Python tracker
<http://bugs.python.org/issue29521>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +75
___
Python tracker
<http://bugs.python.org/issue28929>
___
___
Python-bugs-list mailing list
Unsubscribe:
Mariatta Wijaya added the comment:
Thanks, Thomas :) I'll let you close your own PR on GitHub.
--
___
Python tracker
<http://bugs.python.org/issue29481>
___
___
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
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
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
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
Changes by Mariatta Wijaya :
--
components: +Library (Lib)
versions: +Python 3.7
___
Python tracker
<http://bugs.python.org/issue29595>
___
___
Python-bugs-list m
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
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
Changes by Mariatta Wijaya :
--
pull_requests: +177
___
Python tracker
<http://bugs.python.org/issue29453>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
nosy: +Mariatta
___
Python tracker
<http://bugs.python.org/issue23670>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
Changes by Mariatta Wijaya :
--
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue29613>
___
___
Python-bugs-list mailing list
Unsubscrib
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
Changes by Mariatta Wijaya :
--
versions: +Python 3.7
___
Python tracker
<http://bugs.python.org/issue27788>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Changes by Mariatta Wijaya :
--
pull_requests: +241
___
Python tracker
<http://bugs.python.org/issue28556>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +242
___
Python tracker
<http://bugs.python.org/issue28556>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +247
___
Python tracker
<http://bugs.python.org/issue26184>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
versions: -Python 3.4
___
Python tracker
<http://bugs.python.org/issue29642>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +254
___
Python tracker
<http://bugs.python.org/issue28929>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +255
___
Python tracker
<http://bugs.python.org/issue28929>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +256
___
Python tracker
<http://bugs.python.org/issue28929>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +260
___
Python tracker
<http://bugs.python.org/issue29648>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Changes by Mariatta Wijaya :
--
pull_requests: +266
___
Python tracker
<http://bugs.python.org/issue28587>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Changes by Mariatta Wijaya :
--
pull_requests: +275
___
Python tracker
<http://bugs.python.org/issue29648>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +276
___
Python tracker
<http://bugs.python.org/issue29648>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +277
___
Python tracker
<http://bugs.python.org/issue22594>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +278
___
Python tracker
<http://bugs.python.org/issue22594>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +281
___
Python tracker
<http://bugs.python.org/issue26184>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Changes by Mariatta Wijaya :
--
pull_requests: +282
___
Python tracker
<http://bugs.python.org/issue22594>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mariatta Wijaya :
--
pull_requests: +285
___
Python tracker
<http://bugs.python.org/issue26184>
___
___
Python-bugs-list mailing list
Unsubscribe:
1001 - 1100 of 1212 matches
Mail list logo