[issue44842] String conversion of Path removes '/' from original url

2021-08-05 Thread Manish Satwani
Manish Satwani added the comment: Thanks for the update Eric, if it is not designed to support URI it should tell to the user. It is very wired it just returns wrong data. You can detect it very well if user has specified URI or not

[issue44842] String conversion of Path removes '/' from original url

2021-08-05 Thread Manish Satwani
Manish Satwani added the comment: import pathlib p = pathlib.Path('adl://myblob.azuredatalakestore.net/local/abc/xyz') s = str(p) print(s) what you expect s to be?? There is a bug in path.Path.str(conversion to string) and it remove a slash s is 'adl:/myblob.azuredatalakestor

[issue44842] String conversion of Path removes '/' from original url

2021-08-05 Thread Manish Satwani
New submission from Manish Satwani : import pathlib p = pathlib.Path('adl://myblob.azuredatalakestore.net/local/abc/xyz') s = str(p) print(s) what you expect s to be?? There is a bug in path.Path.str(conversion to string) and it remove a slash s is 'adl:/myblob.azuredatalakestor

[issue30717] Add unicode grapheme cluster break algorithm

2020-01-07 Thread Manish
Manish added the comment: > Does `unicode-segmentation` support all platforms that CPython supports? It's no-std, so it supports everything the base Rust compiler supports (which is basically everything llvm supports). And yeah, if there's something that doesn't matc

[issue30717] Add unicode grapheme cluster break algorithm

2020-01-06 Thread Manish
Manish added the comment: > one never needs to look at more than two adjacent code points to tell whether or not a grapheme break will occur between them, so this ought to be pretty efficient. That note is outdated (and has been outdated since Unicode 9). The regional indicator ru

[issue30717] Add unicode grapheme cluster break algorithm

2020-01-05 Thread Manish
Manish added the comment: Oh, also, if y'all are fine with binding to Rust (through a C ABI) I'd love to help y'all use unicode-segmentation, which is much less work that pulling in ICU. Otherwise if y'all have implementation questions I can answer them. This spe

[issue30717] Add unicode grapheme cluster break algorithm

2020-01-05 Thread Manish
Manish added the comment: Hi, Unicodey person here, I'm involved in Unicode itself and also maintain an implementation of this particular spec[1]. So, firstly, > "a⃑".center(width=5, fillchar=".") If you're trying to do terminal width stuff, extended gr

[issue39084] string.letters is flipped after setlocale is called

2019-12-17 Thread Manish
Change by Manish : -- keywords: +patch pull_requests: +17117 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17650 ___ Python tracker <https://bugs.python.org/issu

[issue39084] string.letters is flipped after setlocale is called

2019-12-17 Thread Manish
New submission from Manish : Steps to reproduce: >>> import string >>> string.letters 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' >>> help(string) .. >>> string.letters 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstu

[issue28968] xml rpc server fails with connection reset by peer error no 104

2016-12-22 Thread Manish Singh
Manish Singh added the comment: Below is the information sent to python-dev group === [ Issue ] I have used xml rpc library with transport as http. My client and server are running on same host. Some xml rpc requests

[issue28968] xml rpc server fails with connection reset by peer error no 104

2016-12-22 Thread Manish Singh
Manish Singh added the comment: Hi Jim, Thank you for replying. As you are suggesting that there is a firewall setting. Then in that case every request should fail, right? But in my case only few request fail(4 out 20 requests). Have you seen my mail sent to python-dev group through gmail

[issue28968] xml rpc server fails with connection reset by peer error no 104

2016-12-21 Thread Manish Singh
Manish Singh added the comment: Hi David, How can i port it to main python-dev list. Need to mail on it or some other group is there so that we can send the message to it. -- ___ Python tracker <http://bugs.python.org/issue28

[issue28968] xml rpc server fails with connection reset by peer error no 104

2016-12-19 Thread Manish Singh
Manish Singh added the comment: Hi Davud Murray, Can you reply to above comments. -- ___ Python tracker <http://bugs.python.org/issue28968> ___ ___ Python-bug

[issue28968] xml rpc server fails with connection reset by peer error no 104

2016-12-16 Thread Manish Singh
Manish Singh added the comment: Hi David Murray, Please refer this link, http://stackoverflow.com/questions/383738/104-connection-reset-by-peer-socket-error-or-when-does-closing-a-socket-resu -- ___ Python tracker <http://bugs.python.

[issue28968] xml rpc server fails with connection reset by peer error no 104

2016-12-15 Thread Manish Singh
Manish Singh added the comment: Hi David Murray, Thanks for replying. I have mentioned that my client and server are running on same host. So communication is going through localhost address. I have checked for possible reasons of connection reset by peer error, below are the possible causes

[issue28968] xml rpc server fails with connection reset by peer error no 104

2016-12-14 Thread Manish Singh
Changes by Manish Singh : -- nosy: +loewis ___ Python tracker <http://bugs.python.org/issue28968> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28968] xml rpc server fails with connection reset by peer error no 104

2016-12-14 Thread Manish Singh
Manish Singh added the comment: Hi loewis, Can you please look into this issue -- ___ Python tracker <http://bugs.python.org/issue28968> ___ ___ Python-bug

[issue28968] xml rpc server fails with connection reset by peer error no 104

2016-12-14 Thread Manish Singh
New submission from Manish Singh: I have used xml rpc library with transport http. My client and server are running on same host. In normal load scenario(20% cpu usage, 80% memory usage, 18 GB memory free), some request of xml rpc client fails with connection reset by peer error. I have used

[issue28203] complex() gives wrong error when the second argument has an invalid type

2016-09-19 Thread Manish Goregaokar
New submission from Manish Goregaokar: When the second argument of complex() is not a number/string, the type error reports the error but prints the type of the first argument: > complex({1:2},1j) Traceback (most recent call last): File "", line 1, in TypeE

[issue19381] Seg Fault with complex numbers

2013-10-24 Thread Manish Raghavan
New submission from Manish Raghavan: Python 3.3.2 (v3.3.2:d047928ae3f6, May 13 2013, 13:52:24) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 1+1j (1+1j) >

[issue13941] Your Python may not be configured for Tk

2012-02-04 Thread Manish Mishra
New submission from Manish Mishra : I am trying to install Python3.2.2 on Ubuntu 11.10. I downloaded the tar file. Then as per readme file did ./configure , make, make test, and then sudo make install. When “make” command is issued following appears along with many other messages Python