[issue44020] test_ssl fails in the macos CI

2021-05-03 Thread PAKKURTHI MOHAN SAI KRISHNA
Change by PAKKURTHI MOHAN SAI KRISHNA : -- components: macOS nosy: christian.heimes, mohansai, ned.deily, pablogsal, ronaldoussoren priority: normal severity: normal status: open title: test_ssl fails in the macos CI type: behavior versions: Python 3.10

[issue43943] test_ssl fails in the macos CI

2021-05-03 Thread PAKKURTHI MOHAN SAI KRISHNA
Change by PAKKURTHI MOHAN SAI KRISHNA : -- components: +Installation -macOS nosy: -ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue43

[issue43943] test_ssl fails in the macos CI

2021-05-03 Thread PAKKURTHI MOHAN SAI KRISHNA
Change by PAKKURTHI MOHAN SAI KRISHNA : -- components: +macOS nosy: +ned.deily, ronaldoussoren status: pending -> open ___ Python tracker <https://bugs.python.org/issu

[issue43710] Access violations in C extension modules on Python 3.9.3

2021-05-03 Thread PAKKURTHI MOHAN SAI KRISHNA
Change by PAKKURTHI MOHAN SAI KRISHNA : -- assignee: -> terry.reedy components: +IDLE -Extension Modules, Windows nosy: +terry.reedy ___ Python tracker <https://bugs.python.org/issu

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

2014-09-25 Thread Sai Krishna
Changes by Sai Krishna saikrishna17...@gmail.com: -- nosy: +saikrishna17394 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21991 ___ ___ Python

[issue22124] Rotating items of list to left

2014-08-02 Thread Sai Krishna G
New submission from Sai Krishna G: Hi, I am trying to rotate list of 3 to left for this I am trying to define this function def rotate_left3(nums) #argument nums is list for example rotate_left3([1, 2, 3]) I am expecting value [2,3,1] in return. I have written the following code a = nums