[issue46184] Remove `netlify.toml`?

2021-12-30 Thread Mariatta
Mariatta added the comment: New changeset fbaf2e604cd354f1ebc6be029480010c6715a8ca by Nikita Sobolev in branch 'main': bpo-46184: remove `netlify.toml` (#30272) https://github.com/python/cpython/commit/fbaf2e604cd354f1ebc6be029480010c6715a8ca -- nosy:

[issue46178] Remove `.travis.yml`?

2021-12-30 Thread Mariatta
Mariatta added the comment: New changeset 82c2b54a35f85d87639201d1431ae6584b079e13 by Nikita Sobolev in branch 'main': bpo-46178: remove unusued `.travis.yml` file (#30257) https://github.com/python/cpython/commit/82c2b54a35f85d87639201d1431ae6584b079e13 -- nosy:

[issue46178] Remove `.travis.yml`?

2021-12-30 Thread Mariatta
Mariatta added the comment: New changeset 2cf7d02b99ce8cebd26d330aa8aac2ee369d4600 by Hugo van Kemenade in branch 'main': bpo-46178: Remove/rename redundant Travis CI code (#30309) https://github.com/python/cpython/commit/2cf7d02b99ce8cebd26d330aa8aac2

[issue45903] What’s New In Python 3.11: wrong reference to Signature.from_callable

2022-01-02 Thread Mariatta
Mariatta added the comment: New changeset 7a8796dc67d691e43eed69969e7706fefe0f16e9 by Hugo van Kemenade in branch 'main': bpo-45903: Fix typo in What's New: Signature.from_builtin is removed (GH-29813) https://github.com/python/cpython/commit/7a8796dc67d691e43eed69969

[issue45903] What’s New In Python 3.11: wrong reference to Signature.from_callable

2022-01-02 Thread Mariatta
Mariatta added the comment: Thanks Jakub for reporting the issue, and thanks Hugo for the PR. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue46229] CODE_OF_CONDUCT shadowing org default

2022-01-02 Thread Mariatta
Mariatta added the comment: Sounds good to me to use the org-level CoC file and removing the local CPython copy. Having a single source of truth will be valuable and reduce our maintenance burden. -- ___ Python tracker <https://bugs.python.

[issue46229] CODE_OF_CONDUCT shadowing org default

2022-01-02 Thread Mariatta
Mariatta added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue38619] [Doc] UUID.hex is lowercase

2022-02-14 Thread Mariatta
Mariatta added the comment: New changeset 5d53cf30f9cb3758849e859db5d4602cb7c521f7 by 180909 in branch 'main': bpo-38619: Update the documentation for UUID.hex (GH-29830) https://github.com/python/cpython/commit/5d53cf30f9cb3758849e859db5d4602cb7c521f7 -- nosy:

[issue38619] [Doc] UUID.hex is lowercase

2022-02-14 Thread Mariatta
Mariatta added the comment: Thanks. I do think it is helpful to state that it is lowercase. I have merged the PR, and will backport to 3.10 and 3.9. Thanks. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Py

[issue46436] Pass the -d/--directory command-line option to http.server.CGIHTTPRequestHandler

2022-02-14 Thread Mariatta
Mariatta added the comment: New changeset 502ad3930ee8fcf76026edfc06a33621363cebea by Miss Islington (bot) in branch '3.9': bpo-46436: Fix command-line option -d/--directory in module http.server (GH-30701) https://github.com/python/cpython/commit/502ad3930ee8fcf76026edfc06a336

[issue46436] Pass the -d/--directory command-line option to http.server.CGIHTTPRequestHandler

2022-02-14 Thread Mariatta
Mariatta added the comment: New changeset b27195332e91e932501f16cf9877761b218a9c99 by Miss Islington (bot) in branch '3.10': bpo-46436: Fix command-line option -d/--directory in module http.server (GH-30701) https://github.com/python/cpython/commit/b27195332e91e932501f16cf987776

[issue47235] Clarify that `assret_called_once_with` sample code is intended typo

2022-04-05 Thread Mariatta
New submission from Mariatta : In unittest.mock documentation, there is an example code which intentionally contains typo. Source: https://github.com/python/cpython/blame/main/Doc/library/unittest.mock.rst#L2553 We've received quite a number of false "bug report" rega

[issue38351] Modernize email example from %-formatting to f-string

2019-10-02 Thread Mariatta
New submission from Mariatta : A string was formatted with %s in the code example https://github.com/python/cpython/blob/b3e7045f8314e7b62cd95861d207fe2f97e47198/Doc/includes/email-simple.py#L15 ``` msg['Subject'] = 'The contents of %s' % textfile ``` It would be gre

[issue38351] Modernize email example from %-formatting to f-string

2019-10-02 Thread Mariatta
Mariatta added the comment: I think updating one isolated code example is less invasive and easier to review, instead of one big PR to change everything from "%s" to str.format or f-string. I brought up this example code merely because I happen to be reading

[issue38351] Modernize email example from %-formatting to f-string

2019-10-09 Thread Mariatta
Mariatta added the comment: No decision yet. We're waiting for Julien's input. Thanks. -- ___ Python tracker <https://bugs.python.org/issue38351> ___ ___

[issue38486] Dead links in mailbox doc

2019-10-21 Thread Mariatta
Mariatta added the comment: Seems like we meant to reference to the maildir specification, which used to be hosted in qmail.com Since qmail is gone, how about we refer to maildir info here? https://wiki2.dovecot.org/MailboxFormat/Maildir -- nosy: +Mariatta

[issue43715] curses inch() and scrbkgd() documentation ommissions

2021-04-08 Thread Mariatta
Mariatta added the comment: Thanks for the patch, but I find it difficult to read in plain text. Can you create a pull request with the your suggested changes? -- nosy: +Mariatta ___ Python tracker <https://bugs.python.org/issue43

[issue43790] CLA check fails with a 500 error

2021-04-10 Thread Mariatta
Mariatta added the comment: Thanks for the report. I've identified the problem and fixed it. It should be working now. Further issues with it can be filed at https://github.com/Mariatta/check_python_cla/issues Thanks. -- assignee: -> Mariatta components: -Demos a

[issue42589] doc: Wrong "from" keyword link in Exceptions doc

2021-04-29 Thread Mariatta
Mariatta added the comment: Thanks for the PR. There is conflict with applying it to the 3.8 branch. If you can get to it, it would be great. Thanks. -- nosy: +Mariatta stage: patch review -> backport needed ___ Python tracker <

[issue43978] Incorrect "versionadded" info in typing.NoReturn documentation

2021-04-29 Thread Mariatta
New submission from Mariatta : We received a documentation bug report in docs mailing list. https://mail.python.org/archives/list/d...@python.org/thread/BLANNZUPUEOJ4LJYSJNNFLK5I7NYE3GH/# It looks like the doc currently says that, typing.NoReturn was added in both 3.5.4 and 3.6.2 It

[issue42589] doc: Wrong "from" keyword link in Exceptions doc

2021-04-30 Thread Mariatta
Mariatta added the comment: Thanks for the work! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue44679] unittest.mock.sentinel documentation typo

2021-08-05 Thread Mariatta
Change by Mariatta : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45421] Remove dead code from html.parser

2021-10-12 Thread Mariatta
Mariatta added the comment: New changeset 562c0d7398b9f34ff63a1dc77113dad96a93ce4e by Alberto Mardegan in branch 'main': bpo-45421: Remove dead code from html.parser (GH-28847) https://github.com/python/cpython/commit/562c0d7398b9f34ff63a1dc77113dad96a93ce4e -- nosy:

[issue39348] wrong rst syntax in socket.rst

2020-01-15 Thread Mariatta
Mariatta added the comment: Thanks! -- nosy: +Mariatta ___ Python tracker <https://bugs.python.org/issue39348> ___ ___ Python-bugs-list mailing list Unsub

[issue39348] wrong rst syntax in socket.rst

2020-01-15 Thread Mariatta
Change by Mariatta : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue31862] Port the standard library to PEP 489 multiphase initialization

2020-01-16 Thread Mariatta
Change by Mariatta : -- pull_requests: -13420 ___ Python tracker <https://bugs.python.org/issue31862> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38342] ImportError: cannot import name 'MetadataPathFinder' from 'importlib.metadata'

2020-01-16 Thread Mariatta
Mariatta added the comment: Just wanted to add that I got the same error in Python 3.8.1. I ran the script that @Jaraco wrote above: python -c "import importlib.metadata, shutil, pathlib; file = pathlib.Path(importlib.metadata.__file__); str(file).endswith('__init__.py') an

[issue39514] http://sphinx.pocoo.org/

2020-02-01 Thread Mariatta
Mariatta added the comment: Hmm the fix should have been included in release 2020.1, which was release a couple weeks ago. -- nosy: +Mariatta ___ Python tracker <https://bugs.python.org/issue39

[issue39514] http://sphinx.pocoo.org/

2020-02-01 Thread Mariatta
Mariatta added the comment: I tested locally, if I build the docs using python-docs-theme 2020.1, the link is fixed. I'm reopening this ticket. I think it is a matter of making sure docs.p.o is using the right version of python-docs-theme. (v 2020.1) -- resolution: out of

[issue39545] await is not supported in f-string in 3.6

2020-02-03 Thread Mariatta
Mariatta added the comment: The answer I got from Yury before was: "Before 3.7 async and await were not proper keywords, so the interpreter did not recognize them in some contexts." -- nosy: +Mariatta ___ Python tracker <https://bu

[issue39539] Improve Keccak support in hashlib including KangarooTwelve

2020-02-03 Thread Mariatta
Mariatta added the comment: Added hashlib module experts. -- nosy: +Mariatta, christian.heimes, gregory.p.smith ___ Python tracker <https://bugs.python.org/issue39

[issue20265] Bring Windows docs up to date

2020-02-10 Thread Mariatta
Mariatta added the comment: I think this is done, so I'm going to close it. Thanks all who participated. If there are more updates needed to the Windows documentation, I would suggest creating specific tickets with specific problems, instead of one big catchall ticket. --

[issue39594] Typo in documentation for os.times

2020-02-10 Thread Mariatta
Mariatta added the comment: Thanks! -- nosy: +Mariatta resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39869] Improve Instance Objects tutorial documentation

2020-03-05 Thread Mariatta
New submission from Mariatta : In https://docs.python.org/3.9/tutorial/classes.html#instance-objects, it says: > There are two kinds of valid attribute names, data attributes and methods. Replace the comma with a colon > There are two kinds of valid attribute names: data attribut

[issue39869] Improve Instance Objects tutorial documentation

2020-03-10 Thread Mariatta
Change by Mariatta : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39879] Update language reference to specify that dict is insertion-ordered.

2020-03-14 Thread Mariatta
Mariatta added the comment: Patch are submitted as pull request on our GitHub repo. Here's a write-up on how to do it https://devguide.python.org/pullrequest/#step-by-step-guide -- nosy: +Mariatta ___ Python tracker <https://bugs.py

[issue42515] Devguide recommend against using PRs to update fork

2020-11-30 Thread Mariatta
Mariatta added the comment: No need to feel embarrassed about it :) I've made similar mistake in the past. Sounds good to rename the "Syncing with Upstream" section with "Updating your CPython fork". If you can open an issue in github.com/python/devguide, tha

[issue42922] Enlace a descripción de función 'dir' faltante

2021-01-13 Thread Mariatta
Mariatta added the comment: Hi, the Spanish translation for Python docs is managed at https://github.com/python/python-docs-es Can you please open the issue there? Thanks you. Really sorry that I don't speak Spanish :( so I'm replying in English. -- nosy: +Mariatta

[issue43117] Translation Mistakes

2021-02-03 Thread Mariatta
Mariatta added the comment: Thanks for reporting this issue. The translations are worked on separate repositories and they have their own issue tracker. Please check the following table in the DevGuide to find the issue tracker for the translation group. You would need to report this issue

[issue43415] Typo

2021-03-05 Thread Mariatta
Change by Mariatta : -- keywords: +easy, newcomer friendly ___ Python tracker <https://bugs.python.org/issue43415> ___ ___ Python-bugs-list mailing list Unsub

[issue41227] minor typo in asyncio transport protocol

2020-07-06 Thread Mariatta
Change by Mariatta : -- keywords: +easy, newcomer friendly ___ Python tracker <https://bugs.python.org/issue41227> ___ ___ Python-bugs-list mailing list Unsub

[issue39417] Link to "Python Packaging User Guide: Creating and using virtual environments" is broken

2020-07-07 Thread Mariatta
Mariatta added the comment: Just needed a backport to 3.8 (which is in flight) so this is good to be closed. Thanks. -- nosy: +Mariatta resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracke

[issue41326] Build failure in blurb-it repo: "Failed building wheel for yarl"

2020-07-17 Thread Mariatta
New submission from Mariatta : We're seeing travis CI build failure against the nightly Python build v3.10.0a0. Build log: https://travis-ci.org/github/python/blurb_it/jobs/707532881 Last few lines of the build log: In file included from /opt/python/3.10-dev/include/pytho

[issue41326] Build failure in blurb-it repo: "Failed building wheel for yarl"

2020-07-17 Thread Mariatta
Mariatta added the comment: Adding Victor Stinner to nosy -- nosy: +vstinner ___ Python tracker <https://bugs.python.org/issue41326> ___ ___ Python-bugs-list m

[issue40978] Document that typing.SupportsXXX protocols are runtime checkable

2020-07-31 Thread Mariatta
Mariatta added the comment: > because their runtime results are inconsistent with how Mypy handles them, > producing both false positives and false negatives. @guido or @ivan, do you have further thoughts or additional context to share about the above point? -- nosy: +Ma

[issue41446] New demo, using a web api

2020-08-01 Thread Mariatta
Mariatta added the comment: Thanks for your interest in adding this to CPython but I think this demo does not belong in CPython repository. Perhaps it should be written as a demo for helioviewer API and be part of helioviewer documentation. We already have a documentation for urllib for how

[issue39994] Redundant code in pprint module.

2020-08-14 Thread Mariatta
Mariatta added the comment: @Palak Kumar Jha, you created a PR for this ticket but it seems that your GitHub account is inactive/has been removed. Do you have a new GitHub account? Are you still interested in continuing on this PR? -- nosy: +Mariatta

[issue38585] defusedexpat not supported past python 3.3/3.4

2020-09-05 Thread Mariatta
Mariatta added the comment: Thanks for the report and thanks Zackery for the PR. -- nosy: +Mariatta resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35404] Document how to import _structure in email.message

2020-10-08 Thread Mariatta
Change by Mariatta : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue41988] No hyphen in broken up word in documentation

2020-10-09 Thread Mariatta
Mariatta added the comment: In the source code, we wrote it as "arithmetic" in one word. https://raw.githubusercontent.com/python/cpython/master/Doc/library/decimal.rst So I think this is either Sphinx or Docutils issue. -- nosy:

[issue37352] Typo in documentation: "to making it easy"

2019-06-20 Thread Mariatta
Mariatta added the comment: FWIW I agree that "with an eye to ..." sounds too complex. It would be great to change it to "with the goal of...". -- nosy: +Mariatta ___ Python tracker <https://bug

[issue36165] DOC: ssl.rst is missing formatting on two links

2019-06-20 Thread Mariatta
Mariatta added the comment: This just needed backport to 3.7. Miss-islington is already working on it. Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2019-06-21 Thread Mariatta
Change by Mariatta : -- pull_requests: +14115 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/14282 ___ Python tracker <https://bugs.python.org/issu

[issue37554] Typo in os.rename docs

2019-07-10 Thread Mariatta
Change by Mariatta : -- keywords: +patch pull_requests: +14495 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14692 ___ Python tracker <https://bugs.python.org/issu

[issue37554] Typo in os.rename docs

2019-07-11 Thread Mariatta
Mariatta added the comment: Thanks for the report! -- nosy: +Mariatta ___ Python tracker <https://bugs.python.org/issue37554> ___ ___ Python-bugs-list mailin

[issue37610] Improve "Python Usage and Setup" documentation re: Editors & IDE

2019-07-17 Thread Mariatta
New submission from Mariatta : The Python Usage and Setup documentation lists how to use Python in different environments: 1. command line 2. Unix 3. Windows 4. MacOS Under "Unix" environment there is a section for Editors and IDE, which actually links to external links

[issue37610] Improve "Python Usage and Setup" documentation re: Editors & IDE

2019-07-17 Thread Mariatta
Mariatta added the comment: Should have included the link, but I can't edit issue. Here's the page which I think could be improved. https://docs.python.org/3/using/index.html -- ___ Python tracker <https://bugs.python.o

[issue37611] Improve the "Dealing with Bugs" documentation, include guidelines on how to report bugs

2019-07-17 Thread Mariatta
New submission from Mariatta : On the left of docs.python.org, is a link to "Report a Bug", which takes you to "Dealing with Bugs" section (https://docs.python.org/3/bugs.html) One of the first few paragraphs of the page is telling people that documentation bugs can be

[issue37613] Broken "Back to top" link in www.python.org (mobile)

2019-07-17 Thread Mariatta
Mariatta added the comment: Thanks for the report. The issue tracker for python.org website is at https://github.com/python/pythondotorg/issues PR should be proposed there instead of python/cpython. -- assignee: docs@python -> nosy: +Mariatta resolution: -> third party

[issue37610] Improve "Python Usage and Setup" documentation re: Editors & IDE

2019-07-18 Thread Mariatta
Mariatta added the comment: Thanks for the PR! There's conflict to the 2.7 branch, but I'm not motivated enough to fix it there. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Pyt

[issue37611] Improve the "Dealing with Bugs" documentation, include guidelines on how to report bugs

2019-07-19 Thread Mariatta
Mariatta added the comment: Sure, moving it up is a good start. -- ___ Python tracker <https://bugs.python.org/issue37611> ___ ___ Python-bugs-list mailin

[issue37674] Is imp module deprecated or pending deprecation?

2019-07-24 Thread Mariatta
New submission from Mariatta : The doc https://docs.python.org/3.7/library/imp.html says "Deprecated since version 3.4: The imp package is pending deprecation in favor of importlib." Is it in "deprecated" state, or "pendingdeprecation" state? Should it just be

[issue37799] Renaming Doc/reference/ to Doc/language/

2019-08-09 Thread Mariatta
Mariatta added the comment: The change is not worth doing for several reasons: - renaming filename/directory breaks git history on GitHub web UI. The history can still be viewed if you use the command line e.g. git log --follow. - other pages like stack overflow or blog posts have linked

[issue37823] Telnet documentation: fix the link to open()

2019-08-11 Thread Mariatta
New submission from Mariatta : Bug in the Telnet docs: https://docs.python.org/3/library/telnetlib.html In the section https://docs.python.org/3/library/telnetlib.html#telnetlib.Telnet the “open()” link should probably point to https://docs.python.org/3/library/telnetlib.html

[issue36908] "This module is always available" is confusing

2019-05-17 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks all. I've backported the change to 3.7. I think this is good to be closed. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7, Python 3

[issue37059] Pre-compile Directive to Remind Coders that Men are Pigs

2019-05-26 Thread Mariatta Wijaya
Change by Mariatta Wijaya : -- assignee: docs@python -> nosy: -docs@python resolution: -> rejected stage: -> resolved status: open -> closed versions: -Python 3.7 ___ Python tracker <https://bugs.python

[issue36739] "4.6. Defining Functions" should mention nonlocal

2019-05-28 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks! -- nosy: +Mariatta resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue37205] time.perf_counter() is not system-wide on Windows, in disagreement with documentation

2019-06-19 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: > can you explain why you removed 3.5 and 3.6 from the versions list? 3.5 and 3.6 are closed for regular bug fix maintenance. We're only fixing issues in 3.7 and 3.8 now. Only security fixes will be applied to 3.5 or 3.6, and this issue is not co

[issue30217] Missing entry for the tilde (~) operator in the Index

2017-06-12 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 37e04153d5e331162608b33639ecd3c9a5ae2432 by Mariatta (Marco Buttu) in branch '3.5': bpo-30217: add the operators ~ and | to the index (GH-1502) (GH-2138) https://github.com/python/cpython/commit/37e04153d5e331162608b33639ecd3

[issue30217] Missing entry for the tilde (~) operator in the Index

2017-06-12 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue30217> ___ ___

[issue6519] Reorder 'with' statement for files in Python Tutorial

2017-06-12 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: @akuchling Can you prepare a PR on GitHub? -- nosy: +Mariatta ___ Python tracker <http://bugs.python.org/issue6519> ___ ___

[issue6519] Reorder 'with' statement for files in Python Tutorial

2017-06-12 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset bd4e9e0ca96dabf33605d9b1fd1e0562ece8ae18 by Mariatta (Andrew Kuchling) in branch 'master': bpo-6519: Improve Python Input Output Tutorial (GH-2143) https://github.com/python/cpython/commit/bd4e9e0ca96dabf33605d9b1fd1e05

[issue6519] Reorder 'with' statement for files in Python Tutorial

2017-06-12 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2196 ___ Python tracker <http://bugs.python.org/issue6519> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6519] Reorder 'with' statement for files in Python Tutorial

2017-06-12 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2195 ___ Python tracker <http://bugs.python.org/issue6519> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6519] Reorder 'with' statement for files in Python Tutorial

2017-06-12 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 5a86154a931083e6a9f9bdf9cc8b3bc33abb673d by Mariatta in branch '3.5': bpo-6519: Improve Python Input Output Tutorial (GH-2143) (GH-2146) https://github.com/python/cpython/commit/5a86154a931083e6a9f9bdf9cc8b3b

[issue6519] Reorder 'with' statement for files in Python Tutorial

2017-06-12 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks everyone! I merged the PR and backported to 3.6 and 3.5. There are a bunch of conflicts when trying to backport to 2.7, so I decided not to bother. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue6519] Reorder 'with' statement for files in Python Tutorial

2017-06-12 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 81c05ccc10d044584dff3a69ee531094ed76ee2c by Mariatta in branch '3.6': bpo-6519: Improve Python Input Output Tutorial (GH-2143) (GH-2145) https://github.com/python/cpython/commit/81c05ccc10d044584dff3a69ee5310

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue30656> ___ ___ Python-bugs-list mailin

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 2d0afef82a07afdb666f2ca0c533aac5d39155cd by Mariatta (Emily Morehouse) in branch 'master': bpo-30656: Fix Python C API Module Objects documentation (GH-2170) https://github.com/python/cpython/commit/2d0afef82a07afdb666f2ca0c533aa

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: commit review -> backport needed ___ Python tracker <http://bugs.python.org/issue30656> ___ ___ Python-bugs-list mai

[issue30603] textwrap: declining indent level has no test case

2017-06-13 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 601483d3b8a0433ca25f7fd6beea2cef674be039 by Mariatta (Jonathan Eunice) in branch 'master': bpo-30603: Add test case to textwrap.dedent (GH-2014) https://github.com/python/cpython/commit/601483d3b8a0433ca25f7fd6beea2cef674be039 -

[issue30659] Use ** correctly for "kwargs" in signature of namedtuple._replace()

2017-06-13 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 184bd82ba8106785ba22f0d2477dbd08bef821fb by Mariatta (Ben Hoyt) in branch 'master': bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) https://github.com/python/cpython/commit/184bd82ba8106785ba22f0d2477dbd

[issue30659] Use ** correctly for "kwargs" in signature of namedtuple._replace()

2017-06-13 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: -> backport needed versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue30659> ___ ___ Py

[issue30658] Buildbot: don't sent email notification for custom builders

2017-06-13 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: This is not a cpython issue, is it? -- nosy: +Mariatta ___ Python tracker <http://bugs.python.org/issue30658> ___ ___ Python-bug

[issue30658] Buildbot: don't sent email notification for custom builders

2017-06-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: I didn't know about buildmaster-config repo. It's not listed as one of the projects for the Python Core team :) https://github.com/orgs/python/teams/python-core/repositories Should it be? -- ___ Pyth

[issue30659] Use ** correctly for "kwargs" in signature of namedtuple._replace()

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

[issue30659] Use ** correctly for "kwargs" in signature of namedtuple._replace()

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

[issue30659] Use ** correctly for "kwargs" in signature of namedtuple._replace()

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

[issue30659] Use ** correctly for "kwargs" in signature of namedtuple._replace()

2017-06-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 789f47ebb56283bd0156957121ac2854817b2bf9 by Mariatta in branch '3.6': bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) (GH-2195) https://github.com/python/cpython/commit/789f47ebb56283bd0156957121ac28

[issue30659] Use ** correctly for "kwargs" in signature of namedtuple._replace()

2017-06-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 4b30107bfdc9ba5afbe7f4a9d96273d6078bc310 by Mariatta in branch '2.7': bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) (GH-2196) https://github.com/python/cpython/commit/4b30107bfdc9ba5afbe7f4a9d96273

[issue30659] Use ** correctly for "kwargs" in signature of namedtuple._replace()

2017-06-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset a3afdca2190201bf6572435226dd3f8668139002 by Mariatta in branch '3.5': bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) (GH-2197) https://github.com/python/cpython/commit/a3afdca2190201bf6572435226dd3f

[issue30659] Use ** correctly for "kwargs" in signature of namedtuple._replace()

2017-06-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Fixed and backported. Thanks. -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2275 ___ Python tracker <http://bugs.python.org/issue30656> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2276 ___ Python tracker <http://bugs.python.org/issue30656> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 6a90a124706b73824aebf5c2bd7b27daf82b2342 by Mariatta in branch '3.6': bpo-30656: Fix Python C API Module Objects documentation (GH-2170) (GH-2230) https://github.com/python/cpython/commit/6a90a124706b73824aebf5c2bd7b27

[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 0b13f58497d3a36d062c3b3b827abb05db5afbc1 by Mariatta in branch '3.5': bpo-30656: Fix Python C API Module Objects documentation (GH-2170) (GH-2231) https://github.com/python/cpython/commit/0b13f58497d3a36d062c3b3b827abb

[issue29478] email.policy.Compat32(max_line_length=None) not as documented

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2278 ___ Python tracker <http://bugs.python.org/issue29478> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29478] email.policy.Compat32(max_line_length=None) not as documented

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2279 ___ Python tracker <http://bugs.python.org/issue29478> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

  1   2   3   4   5   6   7   8   9   10   >