Sean Reifschneider added the comment:
Then how about:
timedelta() showing offset from UTC, negative values indicating West of UTC
?
--
___
Python tracker
<http://bugs.python.org/issue8
Sean Reifschneider added the comment:
I'm fine without ().
I thought the direction was generally initial-capped, but I may be wrong there.
Let's go with "west".
--
___
Python tracker
<http://bu
Sean Reifschneider added the comment:
Committed to 2.7 in 81681 and 3.x in 81682.
--
keywords: +needs review -patch
resolution: -> accepted
stage: -> committed/rejected
status: open -> closed
type: -> feature request
___
Python tr
New submission from Sean Murphy:
Python fails to pass a Queue when calling Process with
multiprocessing.set_start_method set to "spawn" or "forkserver".
Traceback (most recent call last):
File "", line 1, in
File "/usr/lib/python3.5/multiprocessing
Sean Grider added the comment:
I had forgotten all about this bug until I saw an email from Pam today.
The appears to still be some delay.
--
___
Python tracker
<http://bugs.python.org/issue14
New submission from Sean Hunt:
I know that websockets has a issue with when a internet connection is dropped
and prints a bad traceback. However I have to manually recreate it when the
exception happens which is a pain as when it does it crashes aiohttp sessions
as well.
Also I wonder how I
Sean Hunt added the comment:
I am 1 of those people who want to handle the error with reconnect code as it
happens when using discord.py when the stupid connection is aborted due to
Cloudflare being stupid and them thinking a bot made in python is a DDoS like
litterally. So, I know of this
New submission from Sean Reifschneider:
David Beazley in his tutorial pointed out that you could use a metaclass to
create function signatures for the common use case of:
class foo:
def __init__(self, name, value, high, low):
self.name = name
self.value = value
[...]
The
Sean Reifschneider added the comment:
This may be related to: http://bugs.python.org/issue17424
Perhaps there is a common fix that can address this for both?
--
nosy: +jafo
___
Python tracker
<http://bugs.python.org/issue17
Sean Reifschneider added the comment:
This might be a duplicate of issue17053, but the patch provided there doesn't
resolve the issue, at least as far as I know it. Here is an example, from
David Beazley's talk at PyCon 2013:
from inspect import Parameter, Signature
def make_signa
Sean Reifschneider added the comment:
I've tried to test this but v4 doesn't apply cleanly after pure2 is applied,
and v4 doesn't include enough to test it (applying v4 only causes test
failures).
I reviewed v4 and it looks fine in general. I do see that there are changes in
Sean Reifschneider added the comment:
Toshio and Matthias: This approach seems sane to me, Nick asked me to review
this ticket. I'm not coming up with any objections. +1 for retiring SO at
some point after 3.2, and EXT_SUFFIX and SHLIB_SUFFIX.
What documentation needs to be changed?
New submission from Sean Carolan:
I'm attempting to build a Python 2.7.3 RPM but the build command from the
documentation fails. My platform is RHEL 5.9, x86_64
http://docs.python.org/2/distutils/builtdist.html#creating-rpm-packages
Steps to reproduce:
1. Download latest Python tarba
Sean Carolan added the comment:
Éric Araujo, if that is the case then why does it build what looks like a
*.spec file for Python itself?
[scarolan@titania:~/Python-2.7.3]$ head -10
./build/bdist.linux-x86_64/rpm/SPECS/Python.spec
%define name Python
%define version 2.7.3
%define
Sean Carolan added the comment:
Ok, thanks for clearing that up. Maybe the documentation could be updated to
explicitly state this to avoid confusion, eg:
"NOTE: You cannot use setup.py to build a Python RPM. It is only for building
Python mo
Sean Wolfe added the comment:
fwiw, I like the configuration option. I tend to set idle to editor only, but
the configuration option is useful to me.
--
nosy: +seanfelipewolfe
___
Python tracker
<http://bugs.python.org/issue17
Changes by Sean Goodwin :
--
nosy: +Sean Goodwin
___
Python tracker
<http://bugs.python.org/issue6839>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Sean Liu:
In the document of HTMLParser.handle_starttag, it states "All entity references
from html.entities are replaced in the attribute values." However it will
replace the string if it matches ampersand followed by the entity name without
the semicolon.
F
New submission from Sean Wang:
I transfered a file from remote Debian host to my local Windows 10 host using
SecureFX.
I found that the file's last modifed date was 1900/1/1,0:00:00 on
Windows.
I tried to serve this file to be downloaded, and it crashed as follows:
Exception hap
Sean Wang added the comment:
upload a sample test file
--
Added file: http://bugs.python.org/file40929/test
___
Python tracker
<http://bugs.python.org/issue25
Sean Wang added the comment:
This bug still exists in Python 2.7.10 with optparse version 1.5.3.
When the default_value is not ASCII encoded, it would raise
`UnicodeEncodeError: 'ascii' codec can't encode characters`
this error is due to the `str` usage in `expand_default` m
Sean Wang added the comment:
Sorry, missed one condition:
I used `unicode_literals` in Python 2.7.10, example below:
>>> from __future__ import unicode_literals
>>> str('api名称')
Traceback (most recent call last):
File "", line 1, in
UnicodeEncodeError:
Sean Wang added the comment:
when an unicode option.default_value could not be ascii encoded, it would throw
exception, detailed logs below:
File "/Users/seanwang/Documents/dev/foo/bar.py", line 119, in main
parser.print_help()
File
"/usr/local/Cellar/python/2.7.
Sean Gillespie added the comment:
Is anyone currently working on this? If not, I'd like to try and fix this. I've
debugged this a little and think I have an idea of what's going on.
--
nosy: +swgillespie
___
Python tracker
<http
Sean Gillespie added the comment:
Went ahead and did it since I had the time - the issue is that when doing a
token of lookahead to see whether an 'async' at a top-level begins an 'async
def' function or if it is an identifier. A shallow copy of the current token is
made
Sean Wolfe added the comment:
Windows 7 patch test successful:
https://bugs.python.org/issue2704
* install python 2.7.8 fresh on W7
* check idle terminal functionality
--> should not show terminal changes from 2704:
- up arrows move cursor
- typing out of focus has no effect
- clicking ab
Sean Wolfe added the comment:
successfully tested on Linux in 2014
Hello folks, FYI I also installed this patch on Lubuntu linux in 2014 on a
series of computers at a lab where I mentor. I don't have the documentation for
those specific tests, but I did follow the outline above, and i
New submission from Sean B. Palmer:
The following error is uncatchable:
>>> try: ur'\U0010'
... except UnicodeDecodeError: pass
...
UnicodeDecodeError: 'rawunicodeescape' codec can't decode byte 0x5c
in position 0: \U out of range
New submission from Gabriel Sean Farrell:
2nd paragraph of documentation at
http://docs.python.org/lib/module-UserDict.html should read as follows:
This module also defines a class...
The "also" is out of place.
--
components: Documentation
messages: 62322
nosy: gsf
sever
New submission from Sean B. Palmer:
create.py:
import multiprocessing
manager = multiprocessing.Manager()
namespace = manager.Namespace()
print("create.py complete")
run.py:
import create
print("run.py complete")
Correct behaviour occurs for create.py:
$ python3 create.p
Gabriel Sean Farrell added the comment:
Now that BeautifulSoup uses HTMLParser, more people are seeing these
errors. See
http://groups.google.com/group/beautifulsoup/msg/d5a7540620538d14 and
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=516824
--
nosy: +gsf
401 - 431 of 431 matches
Mail list logo