Sijin Joseph added the comment:
Attaching a patch with a doc update to the tutorial, specifying that
1. The return value from f.tell is an opaque number for text files.
2. When seeking using text files the offset value needs to come from f.tell().
http://docs.python.org/3.4/library/io.html
Sijin Joseph added the comment:
Some more links discussing similar issues
http://www.sourceware.org/bugzilla/show_bug.cgi?id=154 - tzset not called
frequently enough by localtime() and friends
http://stackoverflow.com/questions/12150651/library-code-for-dynamically-reloading-the-usr-share
Sijin Joseph added the comment:
This is the same as issue10634
Problem is with the Windows CRT implementation of localtime which does not seem
to be using updated timezone information.
Can this become an issue with technologies like vMotion which allow Live
Migration of virtual servers
Sijin Joseph added the comment:
Behavior for symlink is as follows
>>> os.symlink('non-existent-name', 'existing-name')
Traceback (most recent call last):
File "", line 1, in
PermissionError: [WinError 5] Access is denied: 'non-existent-name
Sijin Joseph added the comment:
This looks to work correctly in default branch,
>>> os.link('non-existent-name', 'new-name')
Traceback (most recent call last):
File "", line 1, in
FileNotFoundError: [WinError 2] The system cannot find the file specified
Sijin Joseph added the comment:
Is anyone working on this? I'd like to include this in a CPython sprint @MIT on
4/13.
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/is
Sijin Joseph added the comment:
Attaching patch.
Removed the second call to os.popen and used the dump variable that was read
earlier as the argument to re.search.
--
keywords: +patch
nosy: +sijinjoseph
Added file: http://bugs.python.org/file22010/12045.patch
Sijin Joseph added the comment:
Is this related to some other issue? The fix seems trivial, however I am
curious as to how you stumbled upon this?
Is there more to this issue than just performance?
--
___
Python tracker
<http://bugs.python.
Changes by Sijin Joseph :
--
nosy: -sijinjoseph
___
Python tracker
<http://bugs.python.org/issue11882>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Sijin Joseph :
--
nosy: -sijinjoseph
___
Python tracker
<http://bugs.python.org/issue12045>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Sijin Joseph :
--
nosy: -sijinjoseph
___
Python tracker
<http://bugs.python.org/issue12018>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Sijin Joseph :
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/issue12045>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Sijin Joseph :
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/issue11882>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Sijin Joseph :
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/issue12034>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Sijin Joseph :
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/issue12018>
___
___
Python-bugs-list mailing list
Unsubscribe:
Sijin Joseph added the comment:
Thanks Antoine. I've attached an updated patch.
>>
- the keyfile / certfile pair and the context parameter should be mutually
exclusive (see e.g. the POP3_SSL constructor in Lib/poplib.py)
[Sijin] - Yes, Thanks, I don't know why I didn
Changes by Sijin Joseph :
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/issue11620>
___
___
Python-bugs-list mailing list
Unsubscribe:
Sijin Joseph added the comment:
I am attaching a patch for the default branch that adds a ssl_context parameter
to IMAP4_SSL. Also added a couple of tests to test_imaplib to test the existing
ctor with certfile and file and also the new one that accepts an SSLContext.
Currently if the
Sijin Joseph added the comment:
Should we add a unit test for this as well?
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/issue11927>
___
___
Sijin Joseph added the comment:
@Amaury - That sounds exactly like the issue described.
To summarize the error is caused because in some versions of windows there is a
bug that causes the handles to stdin/stdout to not be inherited correctly for
apps run from the console "via
Sijin Joseph added the comment:
@Ezio - help(True), help(False) and help(None) all return the correct
documentation for me using latest trunk. I think the quotes around True, False
and None might be throwing things off in your case.
--
___
Python
Sijin Joseph added the comment:
Should True, False and None be keywords? Technically True and False are objects
of type bool, in fact the only objects of that type allowed. And None is a
specially designated object as well.
P.S: Can anyone point me to where the help function is defined in
Sijin Joseph added the comment:
I'd like to add the win_ismount function mentioned by Tim. Is anyone else
working on this presently?
--
___
Python tracker
<http://bugs.python.org/i
Changes by Sijin Joseph :
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/issue11893>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Sijin Joseph :
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/issue9035>
___
___
Python-bugs-list mailing list
Unsubscribe:
Sijin Joseph added the comment:
I was not able to reproduce this on Python 2.7 x64 or Python 3.2 x64 on Win 7
SP1.
I am curious what the output is if you just run test.py, do you still get an
error?
--
nosy: +sijinjoseph
___
Python tracker
<h
Sijin Joseph added the comment:
Is anyone working on this?
--
nosy: +sijinjoseph
___
Python tracker
<http://bugs.python.org/issue8808>
___
___
Python-bugs-list m
Sijin Joseph added the comment:
Fixed minor typo.
--
Added file: http://bugs.python.org/file21775/11901.patch
___
Python tracker
<http://bugs.python.org/issue11
Changes by Sijin Joseph :
Removed file: http://bugs.python.org/file21774/11901.patch
___
Python tracker
<http://bugs.python.org/issue11901>
___
___
Python-bugs-list mailin
Sijin Joseph added the comment:
Patch attached.
--
keywords: +patch
nosy: +sijinjoseph
Added file: http://bugs.python.org/file21774/11901.patch
___
Python tracker
<http://bugs.python.org/issue11
Sijin Joseph added the comment:
Looking at object.h the buffer interface is defined as
/* buffer interface */
typedef struct bufferinfo {
void *buf;
PyObject *obj;/* owned reference */
Py_ssize_t len;
Py_ssize_t itemsize; /* This is Py_ssize_t so it can be
Sijin Joseph added the comment:
>From reading http://support.microsoft.com/kb/899147 it does look like the .dll
>extension needs to have the "Read & Execute" permission in order to have code
>from the .dll be executed. It's odd that there isn't documentat
Sijin Joseph added the comment:
Looking at the code in httplib it seems that response.will_close is set under
the following circumstances,
1. HTTP version is 0.9
2. HTTP response header connection is set to close
3. Non-chunked content with a length of zero
This suggests that the underlying
33 matches
Mail list logo