[issue21338] Silent mode for compileall

2014-10-15 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Thomas. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue22640] Add silent mode for py_compile

2014-10-15 Thread Berker Peksag
New submission from Berker Peksag: This is similar to issue 21338. It would be good to add a new option "-q" to the CLI interface and add a new parameter "quiet" to py_compile.compile() (e.g. if doraise is False and quiet is True, do not print anything). -- ass

[issue20386] socket.SocketType enum overwrites import of _socket.SocketType

2014-10-15 Thread Berker Peksag
Berker Peksag added the comment: + self.assertTrue(socket.SocketType is _socket.socket) You can use assertIs instead of assertTrue. -- nosy: +berker.peksag versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue20

[issue21991] The new email API should use MappingProxyType instead of returning new dicts.

2014-10-15 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue21991> ___ ___ Python-bugs-list mailing list Un

[issue22645] Unable to install Python 3.4.2 amd64 on Windows 8.1 Update 1

2014-10-16 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> resolved ___ Python tracker <http://bugs.python.org/issue22645> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue22650] set up and use VM for net access in the test suite

2014-10-16 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue22650> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21112] 3.4 regression: unittest.expectedFailure no longer works on TestCase subclasses

2014-10-16 Thread Berker Peksag
Berker Peksag added the comment: > 3.4.3 then? Are we still happy with the patch? Please see msg218727. The patch is not ready yet. -- nosy: +rbcollins ___ Python tracker <http://bugs.python.org/issu

[issue22596] support.transient_internet() doesn't catch connection refused errors

2014-10-16 Thread Berker Peksag
Changes by Berker Peksag : Added file: http://bugs.python.org/file36951/issue22596_v2.diff ___ Python tracker <http://bugs.python.org/issue22596> ___ ___ Python-bug

[issue22186] Typos in .py files

2014-10-17 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> commit review ___ Python tracker <http://bugs.python.org/issue22186> ___ ___ Python-bugs-list mai

[issue21417] Compression level for zipfile

2014-10-17 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue21417> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16802] fileno argument to socket.socket() undocumented

2014-10-17 Thread Berker Peksag
Berker Peksag added the comment: The actual signature is now socket.socket(family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None) but, the fileno argument still needs to be documented. -- nosy: +berker.peksag stage: needs patch -> patch review versions: +Python 3.5 -Python

[issue22665] shutil.__all__ incomplete

2014-10-19 Thread Berker Peksag
Berker Peksag added the comment: Here is a patch. I also added SameFileError. -- assignee: -> berker.peksag keywords: +patch nosy: +berker.peksag stage: -> patch review versions: +Python 3.5 Added file: http://bugs.python.org/file36969/issue2266

[issue16041] poplib: unlimited readline() from connection

2014-10-19 Thread Berker Peksag
Berker Peksag added the comment: Here is a patch for 2.7. -- nosy: +berker.peksag stage: needs patch -> patch review Added file: http://bugs.python.org/file36970/issue16041_27.diff ___ Python tracker <http://bugs.python.org/issu

[issue16041] poplib: unlimited readline() from connection

2014-10-19 Thread Berker Peksag
Changes by Berker Peksag : Added file: http://bugs.python.org/file36971/issue16041_27.diff ___ Python tracker <http://bugs.python.org/issue16041> ___ ___ Python-bug

[issue16041] poplib: unlimited readline() from connection

2014-10-19 Thread Berker Peksag
Changes by Berker Peksag : Removed file: http://bugs.python.org/file36970/issue16041_27.diff ___ Python tracker <http://bugs.python.org/issue16041> ___ ___ Python-bug

[issue22186] Typos in .py files

2014-10-19 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Févry. -- assignee: rhettinger -> berker.peksag resolution: -> fixed stage: commit review -> resolved status: open -> closed versions: +Python 3.4, Python 3.5 ___ Python tr

[issue22642] trace module: unclear error message

2014-10-19 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> patch review type: -> behavior ___ Python tracker <http://bugs.python.org/issue22642> ___ ___ Pyth

[issue21949] Document the Py_SIZE() macro.

2014-10-19 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> needs patch type: performance -> enhancement ___ Python tracker <http://bugs.python.org/issue21949> ___ ___ Pyth

[issue22678] An OSError subclass for "no space left on device" would be nice

2014-10-20 Thread Berker Peksag
Changes by Berker Peksag : -- components: +Interpreter Core -Library (Lib) stage: -> patch review type: -> enhancement versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/i

[issue17401] io.FileIO closefd parameter is not documented nor shown in repr

2014-10-20 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> commit review ___ Python tracker <http://bugs.python.org/issue17401> ___ ___ Python-bugs-list mai

[issue11260] smtpd-as-a-script feature should be documented and should use argparse

2014-10-22 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review ___ Python tracker <http://bugs.python.org/issue11260> ___ ___ Python-bugs-list mai

[issue16863] Python 2 error in Argparse tutorial

2014-10-22 Thread Berker Peksag
Changes by Berker Peksag : -- keywords: +easy nosy: +berker.peksag stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue16863> ___ ___ Python-

[issue7559] TestLoader.loadTestsFromName swallows import errors

2014-10-23 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue7559> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22592] Drop support of Borland C compiler

2014-10-23 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker <http://bugs.python.org/issue22592> ___ ___ Python-bugs-list mailing list Un

[issue22695] open() declared deprecated in python 3 docs

2014-10-23 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue22695> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22715] PEP 257: drop the recommendation for a blank line between the class line and the docstring

2014-10-24 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> resolved ___ Python tracker <http://bugs.python.org/issue22715> ___ ___ Python-bugs-list mailing list Un

[issue22723] visited-link styling is not accessible

2014-10-24 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag, georg.brandl ___ Python tracker <http://bugs.python.org/issue22723> ___ ___ Python-bugs-list mailing list Unsub

[issue22723] visited-link styling is not accessible

2014-10-24 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Buck. -- assignee: docs@python -> berker.peksag stage: -> resolved type: -> enhancement versions: +Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.or

[issue22723] visited-link styling is not accessible

2014-10-24 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue22723> ___ ___ Python-bugs-list

[issue22596] support.transient_internet() doesn't catch connection refused errors

2014-10-24 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the review, Ned. I didn't combine the patch with issue 22289, because I couldn't reproduce that failure easily. -- assignee: -> berker.peksag resolution: -> fixed stage: patch review -> resolved sta

[issue22650] set up and use VM for net access in the test suite

2014-10-24 Thread Berker Peksag
Berker Peksag added the comment: There are two disabled tests in Lib/test/test_urllib2net.py: * OtherNetworkTests.test_cnri: # XXX Following test depends on machine configurations that are internal # to CNRI. Need to set up a public server with the right authentication

[issue10116] Sporadic failures in test_urllibnet

2014-10-24 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue10116> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22748] Porting Extension Modules to Python 3 documentation mention about PyString_* functions in Python 3

2014-10-27 Thread Berker Peksag
New submission from Berker Peksag: "Porting Extension Modules to Python 3" document mention about "PyString_*" functions in Python 3. I think the correct prefix should be "PyUnicode_*". >From https://docs.python.org/3/howto/cporting.html#str-unicode-

[issue22756] testAssertEqualSingleLine gives poor errors

2014-10-28 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +ezio.melotti, michael.foord ___ Python tracker <http://bugs.python.org/issue22756> ___ ___ Python-bugs-list mailing list Unsub

[issue22771] shutil.make_archive() doesn't use its "verbose" argument

2014-10-31 Thread Berker Peksag
Berker Peksag added the comment: "verbose" was used by _call_external_zip() (see https://hg.python.org/cpython/rev/a1d078b88247#l3.143), and _call_external_zip() was removed in issue 20744 (see https://hg.python.org/cpython/rev/681e20f8b717). Perhaps we can deprecate "versio

[issue22613] Several minor doc issues

2014-10-31 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> resolved ___ Python tracker <http://bugs.python.org/issue22613> ___ ___ Python-bugs-list mailing list Un

[issue22775] SimpleCookie not picklable with HIGHEST_PROTOCOL

2014-10-31 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> patch review versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issue22775> ___ ___ Python-bugs-list mai

[issue6623] Lib/ftplib.py Netrc class should be removed.

2014-11-01 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Matt. Have you signed a contributor's agreement? You can find it at https://www.python.org/psf/contrib/contrib-form/ -- assignee: -> berker.peksag priority: release blocker -> normal resolution: -> fixed stage

[issue22665] shutil.__all__ incomplete

2014-11-01 Thread Berker Peksag
Berker Peksag added the comment: I agree with Martin. Plus, this method already used by other tests (see Lib/test/test_nntplib.py and Lib/test/test_warnings.py for example). -- ___ Python tracker <http://bugs.python.org/issue22

[issue22665] shutil.__all__ incomplete

2014-11-01 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Martin. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue19610] setup.py does not allow a tuple for classifiers

2014-11-01 Thread Berker Peksag
Berker Peksag added the comment: Updated patch. I've tweaked tests and documentation a bit. Alternatively, I can leave Doc/distutils/setupscript.rst untouched and add a whatsnew entry to Doc/whatsnew/3.5.rst. -- Added file: http://bugs.python.org/file37097/issue19610_v2

[issue22695] open() declared deprecated in python 3 docs

2014-11-01 Thread Berker Peksag
Berker Peksag added the comment: Attached patch should fix the deprecated-removed directive. I've tested it with the following examples: .. deprecated-removed:: 3.4 4.0 The ``'U'`` mode. .. deprecated-removed:: 3.4 4.0 The ``'U'`` mode. .. dep

[issue16056] shadowed test names in std lib regression tests

2014-11-02 Thread Berker Peksag
Berker Peksag added the comment: I think my patch is wrong. test_weak_destroy_while_iterating and test_weak_destroy_and_mutate_while_iterating tests were committed as part of issue 7105 to 2.7 (see changeset https://hg.python.org/cpython/rev/03fcc12282fc). But, those same tests(they uses

[issue22695] open() declared deprecated in python 3 docs

2014-11-02 Thread Berker Peksag
Berker Peksag added the comment: Here is a new patch. Thanks for the review, Serhiy. -- Added file: http://bugs.python.org/file37105/issue22695_v2.diff ___ Python tracker <http://bugs.python.org/issue22

[issue9771] add an optional "default" argument to tokenize.detect_encoding

2014-11-02 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue9771> ___ ___ Python-bug

[issue22317] action argument is not documented in argparse add_subparser() docs

2014-11-02 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +paul.j3 versions: +Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue22317> ___ ___ Python-bugs-list m

[issue21650] add json.tool option to avoid alphabetic sort of fields

2014-11-02 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the suggestions. > If you mean preserve order by default, then yes that would be a nice default. issue21650_v3.diff implements this idea. -- Added file: http://bugs.python.org/file37110/issue21650_v3.d

[issue21650] add json.tool option to avoid alphabetic sort of fields

2014-11-03 Thread Berker Peksag
Changes by Berker Peksag : Added file: http://bugs.python.org/file37119/issue21650_v4.diff ___ Python tracker <http://bugs.python.org/issue21650> ___ ___ Python-bug

[issue22795] Intermittent test_tarfile failures on zLinux

2014-11-04 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag, serhiy.storchaka versions: +Python 3.4, Python 3.5 -Python 3.6 ___ Python tracker <http://bugs.python.org/issue22

[issue22668] memoryview.format is corrupted due to dangling shared pointer

2014-11-04 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> patch review versions: -Python 3.6 ___ Python tracker <http://bugs.python.org/issue22668> ___ ___ Python-bugs-list mai

[issue22808] Typo in asyncio-eventloop.rst, time() link is wrong

2014-11-06 Thread Berker Peksag
Changes by Berker Peksag : -- components: +asyncio nosy: +gvanrossum, haypo, yselivanov stage: -> patch review versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue22816] repor

2014-11-07 Thread Berker Peksag
Changes by Berker Peksag : -- Removed message: http://bugs.python.org/msg230818 ___ Python tracker <http://bugs.python.org/issue22816> ___ ___ Python-bugs-list m

[issue22808] Typo in asyncio-eventloop.rst, time() link is wrong

2014-11-07 Thread Berker Peksag
Berker Peksag added the comment: Committed. Thanks for the patch, Mark. -- nosy: +berker.peksag resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue22695] open() declared deprecated in python 3 docs

2014-11-08 Thread Berker Peksag
Berker Peksag added the comment: Fixed. Thanks for the reviews. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue22824] Update reprlib to use set literals

2014-11-08 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue22824> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22824] Update reprlib to use set literals

2014-11-09 Thread Berker Peksag
Berker Peksag added the comment: Here's a patch to use set literals and frozenset({'a'}) in reprlib. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file37163/issue22824.diff ___ Pyt

[issue22824] Update reprlib to use set literals

2014-11-09 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the review, Raymond. Patch updated: - Updated the documentation - Added two test cases for set literals - Replaced old run_unittest calls with ``unittest.main()`` -- Added file: http://bugs.python.org/file37164/issue22824_v2.diff

[issue22824] Update reprlib to use set literals

2014-11-09 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker <http://bugs.python.org/issue22824> ___ ___ Python-bugs-list mailing list Un

[issue17554] Compact output for regrtest

2014-11-09 Thread Berker Peksag
Berker Peksag added the comment: issue17554-urlfetch.diff LGTM. -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issu

[issue21650] add json.tool option to avoid alphabetic sort of fields

2014-11-09 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the reviews. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue22839] Incorrect link to statistics in tracemalloc documentation

2014-11-10 Thread Berker Peksag
Berker Peksag added the comment: Fixed. Thanks for the report, Jonathan. -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior versions: -Python 3.6 ___ Python tracker <http://

[issue21514] update json module docs in light of RFC 7159 & ECMA-404

2014-11-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue21514> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22849] Double DECREF in TextIOWrapper

2014-11-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +ncoghlan, serhiy.storchaka ___ Python tracker <http://bugs.python.org/issue22849> ___ ___ Python-bugs-list mailing list Unsub

[issue13444] closed stdout causes error on stderr when the interpreter unconditionally flushes on shutdown

2014-11-11 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue19796] urllib2.HTTPError.reason is not documented as "Added in 2.7"

2014-11-11 Thread Berker Peksag
Berker Peksag added the comment: issue 13211 was about a bug in exception hierarchy of the urllib2 module(not an addition to the public API - see msg147318 for detailed explanation). I don't think we need to update documentation. -- resolution: -> wont fix stage: patc

[issue22848] Subparser help does not respect SUPPRESS argument

2014-11-12 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +paul.j3 ___ Python tracker <http://bugs.python.org/issue22848> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22868] Minor error in the example of filter()

2014-11-14 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> resolved ___ Python tracker <http://bugs.python.org/issue22868> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue22536] subprocess should include filename in FileNotFoundError exception

2014-11-15 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issue22536> ___ _

[issue22880] hmac.new docs show optional args incorrectly

2014-11-16 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, but the signature is correct. >From https://docs.python.org/devguide/documenting.html#information-units "The signature should include the parameters, enclosing optional parameters in brackets." See also http://s

[issue22891] code removal from urllib.parse.urlsplit()

2014-11-17 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +orsenthil stage: -> patch review title: [patch]: code removal from urllib.parse.urlsplit() -> code removal from urllib.parse.urlsplit() versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Pyth

[issue20215] Python2.7 socketserver can not listen IPv6 address

2014-11-19 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review ___ Python tracker <http://bugs.python.org/issue20215> ___ ___ Python-bugs-list mai

[issue20885] Little Endian PowerPC64 Linux

2014-11-19 Thread Berker Peksag
Berker Peksag added the comment: Can we close this and issue22176 then? -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue20885> ___ ___

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-11-21 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> patch review type: -> enhancement ___ Python tracker <http://bugs.python.org/issue22914> ___ ___ Python-bugs-list

[issue21815] imaplib truncates some untagged responses

2014-11-22 Thread Berker Peksag
Changes by Berker Peksag : -- versions: +Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue21815> ___ ___ Python-bugs-list mailing list Unsub

[issue22925] Backporting suppress context manager to 2.7

2014-11-23 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, but we don't backport new features to 2.7 unless they are related to PEP 434 and PEP 466. Please send your patch to https://bitbucket.org/ncoghlan/contextlib2 -- nosy: +berker.peksag resolution: -> wont fix stage: -&g

[issue22925] Backporting suppress context manager to 2.7

2014-11-23 Thread Berker Peksag
Changes by Berker Peksag : -- components: +Library (Lib) -Build ___ Python tracker <http://bugs.python.org/issue22925> ___ ___ Python-bugs-list mailing list Unsub

[issue22934] Python/importlib.h is now generated by Programs/_freeze_importlib.c, change comment

2014-11-24 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Joseph. -- assignee: -> berker.peksag nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> enhancement ___ Python tracker <http

[issue20351] Add doc examples for DictReader and DictWriter

2014-11-24 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Charles-Axel. -- assignee: rhettinger -> berker.peksag resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python

[issue16056] shadowed test names in std lib regression tests

2014-11-24 Thread Berker Peksag
Changes by Berker Peksag : -- assignee: -> berker.peksag resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python

[issue22941] IPv4Interface arithmetic changes subnet mask

2014-11-25 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +ncoghlan, pmoody ___ Python tracker <http://bugs.python.org/issue22941> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22948] Integer type and __add__

2014-11-26 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Tutorial and FAQ: how to call a method on an int ___ Python tracker <http://bugs.python

[issue22953] Windows installer configures system PATH also when installing only for current user

2014-11-26 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +steve.dower ___ Python tracker <http://bugs.python.org/issue22953> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22952] multiprocessing doc introduction not in affirmative tone

2014-11-26 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +sbt stage: -> patch review type: behavior -> enhancement versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/i

[issue21514] update json module docs in light of RFC 7159 & ECMA-404

2014-11-27 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue22963] broken link in PEP 102

2014-11-28 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. This has already been reported at https://github.com/python/pythondotorg/issues/510. -- nosy: +berker.peksag resolution: -> third party stage: -> resolved status: open -> closed _

[issue22962] ipaddress: Add optional prefixlen argument to ip_interface and ip_network

2014-11-28 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +ncoghlan, pmoody versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue22962> ___ ___ Python-bugs-list mailin

[issue22389] Add contextlib.redirect_stderr()

2014-11-28 Thread Berker Peksag
Changes by Berker Peksag : -- assignee: rhettinger -> berker.peksag resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python

[issue22964] dbm.open(..., "x")

2014-11-28 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> needs patch type: -> enhancement versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/i

[issue22909] [argparse] Using parse_known_args, unknown arg with space in value is interpreted as first positional arg

2014-11-29 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> resolved status: open -> closed superseder: -> Argparse considers unknown optional arguments with spaces as a known positional argument ___ Python tracker <http://bugs.python.or

[issue22966] py_compile: foo.bar.py → __pycache__/foo.cpython-34.pyc

2014-12-01 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker <http://bugs.python.org/issue22966> ___ ___ Python-bugs-list mailing list Un

[issue22974] Make traceback functions support negative limits

2014-12-01 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> duplicate stage: -> resolved superseder: -> Possible implementation of negative limit for traceback functions ___ Python tracker <http://bugs.python.or

[issue22992] Adding a git developer's guide to Mercurial to devguide

2014-12-03 Thread Berker Peksag
Berker Peksag added the comment: +The workflow of a developer might look something like this: "a core developer" or "a contributor"? It would be good to split core developer and contributor workflows. +# address review comments and merge +git checkout master +

[issue14134] xmlrpc.client.ServerProxy needs timeout parameter

2014-12-04 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue14134> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16837] Number ABC can be instantiated

2014-12-04 Thread Berker Peksag
Berker Peksag added the comment: I left a couple of comments on Rietveld. -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue16837> ___ ___

[issue21793] httplib client/server status refactor

2014-12-04 Thread Berker Peksag
Berker Peksag added the comment: I left a couple of comments on Rietveld. Thanks for the patch, Demian. -- ___ Python tracker <http://bugs.python.org/issue21

[issue22768] Add a way to get the peer certificate of a SSL Transport

2014-12-04 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker <http://bugs.python.org/issue22768> ___ ___ Python-bugs-list mailing list Un

[issue22992] Adding a git developer's guide to Mercurial to devguide

2014-12-05 Thread Berker Peksag
Berker Peksag added the comment: +# address review comments and merge You can remove the "and merge" part. +# generate patch for submission +git diff master..issueA > issueA.patch Contributors may need to update their repos before this step. It would be good to add

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-12-05 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker <http://bugs.python.org/issue22914> ___ ___ Python-bugs-list mailing list Un

[issue21228] Missing enumeration of HTTPResponse Objects methods of urllib.request.urlopen's http.client.HTTPResponse?

2014-12-05 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review versions: -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issu

[issue22153] Documentation of TestCase.runTest is incorrect and confusing

2014-12-06 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: patch review -> commit review ___ Python tracker <http://bugs.python.org/issue22153> ___ ___ Python-

<    19   20   21   22   23   24   25   26   27   28   >