Changes by Santoso Wijaya :
Added file: http://bugs.python.org/file21823/issue11397_py27_2.patch
___
Python tracker
<http://bugs.python.org/issue11397>
___
___
Python-bug
Changes by Santoso Wijaya :
Added file: http://bugs.python.org/file21824/issue11397_py31_2.patch
___
Python tracker
<http://bugs.python.org/issue11397>
___
___
Python-bug
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue11344>
___
___
Python-bugs-list mailing list
Unsubscribe:
Santoso Wijaya added the comment:
Attaching a patch to test a use case for ntpath.samefile (looks like
sameopenfile is already tested--or at least a use case of it).
--
components: +Library (Lib)
keywords: +patch
nosy: +santa4nt
versions: -Python 3.4
Added file: http
Santoso Wijaya added the comment:
Looks like a regression from 2.x.
On 2.7:
Python 2.7.1 (r271:86832, Nov 27 2010, 17:19:03) [MSC v.1500 64 bit (AMD64)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> e = Tru
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue6727>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue12084>
___
___
Python-bugs-list mailing list
Unsubscribe:
Santoso Wijaya added the comment:
`strftime` does not, indeed, seem to define what behaviour it is supposed to do
when given non-supported format characters. Under Windows, in fact, it will
crash the runtime (see: issue #10762).
--
nosy: +santa4nt
Santoso Wijaya added the comment:
Yeah, I meant undefined. I looked that up when writing a patch for issue #10762.
Correction: It *used to* crash on Windows, before the patch was applied.
--
___
Python tracker
<http://bugs.python.org/issue9
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue1746656>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Santoso Wijaya :
--
nosy: +santa4nt
versions: +Python 2.7
___
Python tracker
<http://bugs.python.org/issue10506>
___
___
Python-bugs-list mailin
Santoso Wijaya added the comment:
There is a simple workaround to bypass the hostname resolution mechanism, so
that the server can respond faster.
# This is a hack to patch slow socket.getfqdn calls that
# BaseHTTPServer (and its subclasses) make.
# See: http://bugs.python.org/issue6085
# See
Santoso Wijaya added the comment:
Doesn't that only cache the first remote client it encounters, though? Maybe a
dictionary of caches?
--
___
Python tracker
<http://bugs.python.org/i
Santoso Wijaya added the comment:
Please correct my understanding if I am mistaken, but from skimming through the
source code, it seems that a new BaseHTTPRequestHandler is instantiated per
request. If a caching mechanism is to be adopted as per the patch, wouldn't it
be forgotten when
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue8506>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue8581>
___
___
Python-bugs-list mailing list
Unsubscribe:
Santoso Wijaya added the comment:
File-like objects handle multiple close() gracefully, silently making the
second and subsequent close() calls to an already closed I/O object do nothing.
Why can't the same expectation be applied to logging handlers?
--
status: pending -&
Changes by Santoso Wijaya :
--
components: +Library (Lib), XML
nosy: +santa4nt
versions: +Python 3.3 -Python 2.6, Python 3.1
___
Python tracker
<http://bugs.python.org/issue13
Santoso Wijaya added the comment:
This does not only affect `append`, but also, `insert`, `extend`, etc.
In fact, the list-like operations on Element are merely forwarded to its
`_children` (a list) field. Should we really type check these methods'
arguments each? Doesn't strike a
Changes by Santoso Wijaya :
--
nosy: -santa4nt
___
Python tracker
<http://bugs.python.org/issue8713>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue14465>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue14310>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue7897>
___
___
Python-bugs-list mailing list
Unsubscribe:
Santoso Wijaya added the comment:
This is because, in Python 3.3, xml.etree.ElementTree.Element is overridden by
the C accelerator version, _elementtree.Element.
If you remove the statement,
1708from _elementtree import *
the behavior from Python 3.2 comes back.
--
nosy
Santoso Wijaya added the comment:
OTOH, xml.etree.cElementTree.Element in Python 3.2 and earlier has never been
pickleable, either.
Python 3.2.3+ (3.2:24499eebbc2f, Oct 10 2012, 13:54:45)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "lice
Changes by Santoso Wijaya :
--
components: +Extension Modules
nosy: +santa4nt
type: -> behavior
versions: +Python 2.7
___
Python tracker
<http://bugs.python.org/issu
Santoso Wijaya added the comment:
Attaching patch to trim leading and trailing whitespaces prior to processing.
Incidentally, this also means:
>>> socket.gethostbyname('')
'0.0.0.0'
>>> socket.gethostbyname(' ')
Traceback (most recent call last)
New submission from Santoso Wijaya:
Observe:
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import xml.etree.ElementTree as ET
>>> r
Santoso Wijaya added the comment:
Or, more succintly:
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import xml.etree.ElementTree as ET
&
Changes by Santoso Wijaya :
--
title: cElementTree node creation with attributes is bugged -> cElementTree
creation of nodes with attributes is bugged
___
Python tracker
<http://bugs.python.org/issu
Santoso Wijaya added the comment:
There is still a matter of inconsistency between the two implementations and
between 2.7 and 3.x. IMO, the Python-based ElementTree implementation is more
graceful at handling the "attrib" argument.
The signature of the factory function El
Santoso Wijaya added the comment:
Quoting dabrahams in issue 1572710:
On second thought, I see what effbot is trying to say... but it's still a bug.
Given the way the interface is declared and the behavior of regular python
functions:
Element(tag, attrib={}, **extra)
indicates that
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue21531>
___
___
Python-bugs-list mailing list
Unsubscribe:
Santoso Wijaya added the comment:
I think you should use codecs.BOM_UTF8 rather than using hardcoded string
"\xef\xbb\xbf" directly.
And why special casing UTF-8 while we're at it? What about other encodings and
their BOMs?
--
Changes by Santoso Wijaya :
--
nosy: +santa4nt
type: -> enhancement
___
Python tracker
<http://bugs.python.org/issue21386>
___
___
Python-bugs-list mai
New submission from Santoso Wijaya:
The reference doc for Python data model says that __getslice__ is deprecated
[1], and that __getitem__ should be used instead:
"""
Deprecated since version 2.0: Support slice objects as parameters to the
__getitem__() method. (However, bu
Santoso Wijaya added the comment:
Hm. The docstring for __getitem__ doesn't mention it can/should be accepting
slice object as argument. That's what I'm missing. Doc patch?
--
___
Python tracker
<http://bugs.pyt
Changes by Santoso Wijaya :
--
resolution: -> not a bug
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue21598>
___
___
Python-bugs-
Changes by Santoso Wijaya :
--
versions: +Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issue16376>
___
___
Python-bugs-list mailing list
Unsub
Changes by Santoso Wijaya :
--
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue16376>
___
___
Python-bugs-list mailing list
Unsubscri
Santoso Wijaya added the comment:
Here you go.
--
Added file: http://bugs.python.org/file32334/issue13234_tip_refresh.patch
___
Python tracker
<http://bugs.python.org/issue13
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue18199>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue8713>
___
___
Python-bugs-list mailing list
Unsubscribe:
Santoso Wijaya added the comment:
Does anyone know of any workaround, for now?
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue6792>
___
___
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue17343>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Santoso Wijaya :
--
nosy: +santa4nt
___
Python tracker
<http://bugs.python.org/issue17400>
___
___
Python-bugs-list mailing list
Unsubscribe:
Santoso Wijaya added the comment:
Done.
--
___
Python tracker
<http://bugs.python.org/issue13234>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Santoso Wijaya:
Python 2.7.3 (default, Sep 26 2012, 21:51:14)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import array, cStringIO, StringIO
>>> a = array.array(
Changes by Santoso Wijaya :
--
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue17517>
___
___
Python-bugs-list mailing list
Unsubscri
201 - 249 of 249 matches
Mail list logo