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
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
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
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
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
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
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
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
New submission from Manish :
Steps to reproduce:
>>> import string
>>> string.letters
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
>>> help(string)
..
>>> string.letters
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstu
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
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
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
Manish Singh added the comment:
Hi Davud Murray,
Can you reply to above comments.
--
___
Python tracker
<http://bugs.python.org/issue28968>
___
___
Python-bug
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.
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
Changes by Manish Singh :
--
nosy: +loewis
___
Python tracker
<http://bugs.python.org/issue28968>
___
___
Python-bugs-list mailing list
Unsubscribe:
Manish Singh added the comment:
Hi loewis,
Can you please look into this issue
--
___
Python tracker
<http://bugs.python.org/issue28968>
___
___
Python-bug
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
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
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)
>
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
21 matches
Mail list logo