[issue38288] shutil.make_archive() should allow setting zipfile.ZipFile() 'strict_timestamps'

2019-10-14 Thread Tahia K


Tahia K  added the comment:

I went ahead and picked this one up :) PR is posted to github.

--

___
Python tracker 
<https://bugs.python.org/issue38288>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38288] shutil.make_archive() should allow setting zipfile.ZipFile() 'strict_timestamps'

2019-10-14 Thread Tahia K


Change by Tahia K :


--
keywords: +patch
pull_requests: +16353
stage:  -> patch review
pull_request: https://github.com/python/cpython/pull/16797

___
Python tracker 
<https://bugs.python.org/issue38288>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38160] Add a "PyInterpreterState *" field to PyTypeObject.

2019-09-26 Thread Tahia K


Change by Tahia K :


--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue38160>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38141] Use fewer statics in Argument Clinic.

2019-09-26 Thread Tahia K


Change by Tahia K :


--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue38141>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38278] Need a more efficient way to perform dict.get(key, default)

2019-09-26 Thread Tahia K


Change by Tahia K :


--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue38278>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38288] shutil.make_archive() should allow setting zipfile.ZipFile() 'strict_timestamps'

2019-09-26 Thread Tahia K


Tahia K  added the comment:

Hello,

I'm interested in picking this task up. Would it be alright for me to grab it?

--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue38288>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38155] Add __all__ to the datetime module

2019-09-16 Thread Tahia K


Tahia K  added the comment:

Thanks @corona10. I've posted a PR with all these bits.

--

___
Python tracker 
<https://bugs.python.org/issue38155>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38155] Add __all__ to the datetime module

2019-09-16 Thread Tahia K


Change by Tahia K :


--
keywords: +patch
pull_requests: +15807
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/16203

___
Python tracker 
<https://bugs.python.org/issue38155>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38155] Add __all__ to the datetime module

2019-09-14 Thread Tahia K


Tahia K  added the comment:

I'll definitely add that test @Paul. 

Speaking of, what do you guys think of this test:

 def test_c_all(self):
 """Test that __all__ symbols between the c datetime module and
 the python datetime library are equivalent."""

 c_datetime = import_fresh_module('datetime', fresh=['_datetime'])
 py_datetime = import_fresh_module('datetime', blocked=['_datetime'])
 self.assertEqual(c_datetime.__all__, py_datetime.__all__)


I found the import_fresh_module here: 
https://docs.python.org/3/library/test.html#test.support.import_fresh_module - 
super handy! The test currently passes for me locally, but I wanted to check if 
my usage was correct before submitting a PR.

--

___
Python tracker 
<https://bugs.python.org/issue38155>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38158] PyType_Spec docs list non-existant field "doc"

2019-09-14 Thread Tahia K


Tahia K  added the comment:

Awesome - just posted the PR.

--

___
Python tracker 
<https://bugs.python.org/issue38158>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38158] PyType_Spec docs list non-existant field "doc"

2019-09-14 Thread Tahia K


Change by Tahia K :


--
keywords: +patch
pull_requests: +15752
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/16142

___
Python tracker 
<https://bugs.python.org/issue38158>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38155] Add __all__ to the datetime module

2019-09-13 Thread Tahia K


Tahia K  added the comment:

Hello! I'm interested in picking up this task. Is it okay if I grab it?

The import test bit seems tricky, since (from what I understand) inspecting on 
an "import *" statement might conflict against other global imports in that 
test file. I'm a new contributor and open to suggestions on that bit :)

--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue38155>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38158] PyType_Spec docs list non-existant field "doc"

2019-09-13 Thread Tahia K


Tahia K  added the comment:

Is it okay for me to grab this one?

--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue38158>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2019-09-12 Thread Tahia K


Tahia K  added the comment:

Hi guys,

Is this issue still free to pick up?

--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue23019>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35784] document that hashlib.new takes kwargs

2019-09-10 Thread Tahia K

Tahia K  added the comment:

Hello,

I just submitted a small PR for this doc change, including the example provided 
by Jörn (thanks Jörn).

--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue35784>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35784] document that hashlib.new takes kwargs

2019-09-10 Thread Tahia K


Change by Tahia K :


--
keywords: +patch
pull_requests: +15531
stage:  -> patch review
pull_request: https://github.com/python/cpython/pull/15890

___
Python tracker 
<https://bugs.python.org/issue35784>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5714] http.server._url_collapse_path should live elsewhere

2019-09-10 Thread Tahia K


Change by Tahia K :


--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue5714>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11664] Add patch method to unittest.TestCase

2019-09-10 Thread Tahia K


Change by Tahia K :


--
nosy: +ta1hia

___
Python tracker 
<https://bugs.python.org/issue11664>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com