Igor Bolshakov added the comment:
pls review
--
resolution: -> remind
___
Python tracker
<https://bugs.python.org/issue43650>
___
___
Python-bugs-list mai
New submission from igor voltaic :
MemoryError: null
...
File "", line 13, in repack__file
shutil.unpack_archive(local_file_path, local_dir)
File "python3.6/shutil.py", line 983, in unpack_archive
func(filename, extract_dir, **kwargs)
File "python3.6
Igor Mandrichenko added the comment:
Since Timer thread is never joined, should not it be a daemon ?
--
___
Python tracker
<https://bugs.python.org/issue43
New submission from Igor Mandrichenko :
There is an apparent memory leak in threading. It looks like memory grows when
I create, run and destroy threads. The memory keeps adding at the rate of about
100 bytes per thread.
I am attaching the code, which works for Linux. getMemory() function is
Change by Igor Mandrichenko :
--
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue43375>
___
___
Python-bugs-
Igor Mandrichenko added the comment:
You are right. When I add join(), the memory does not grow any more.
Thanks !
--
___
Python tracker
<https://bugs.python.org/issue43
Change by Igor Skochinsky :
--
nosy: +Igor.Skochinsky
___
Python tracker
<https://bugs.python.org/issue42545>
___
___
Python-bugs-list mailing list
Unsubscribe:
Igor Skochinsky added the comment:
> I am currently working on test that checks that the stable API symbols are
> correctly exported.
Thank you very much! For added motivation, the 3.8.0 release was unusable
thanks to issue37633 which was somewhat similar (also in pythonrun). For
ref
Igor Skochinsky added the comment:
Thanks for the fix! I'd like to submit a test to avoid this and similar issues
in future. Are there any guidelines for this? Sorry if this is a wrong place to
ask.
--
___
Python tracker
&
Igor Skochinsky added the comment:
Attached is a sample program which works on 3.9 but fails linking with 3.10.0a2
The .so is missing the symbol:
igor@LAPTOP:~/py_limited_api_example$ nm /home/igor/lib/libpython3.9.so | grep
Py_CompileString
00212720 T Py_CompileString
Igor Skochinsky added the comment:
> But Py_CompileString() function was not removed, it's still in the master
> branch (future Python 3.10). Why do you think that it has been removed?
Thank you. It looked that way because of the removed block of lines in
Igor Skochinsky added the comment:
Hi All,
It seems this patch removes some functions provided by the Stable ABI (PEP
384), most notably Py_CompileString. Was this the intention? If not, is there
still a chance to reintroduce it before the release?
--
nosy: +Igor.Skochinsky
Igor Ceh added the comment:
I've changed ./Modules/_sqlite/util.h
//#if SQLITE_VERSION_NUMBER >= 3007014
#if SQLITE_VERSION_NUMBER >= 3107014 // Change
#define SQLITE3_CLOSE sqlite3_close_v2
#else
#define SQLITE3_CLOSE sqlite3_close
#endif
#endif
And tried to recompile with
New submission from Igor Ceh :
While trying to build Python 3.8.1 from source with Sqlite 3.30.1 on a CentOS
6.10 I get the following warning:
*** WARNING: renaming "_sqlite3" since importing it failed:
build/lib.linux-x86_64-3.8/_sqlite3.cpython-38-x86_64-linux-gnu.so: undefin
New submission from Igor Z :
I had to install manually new urllib3 (zip archive) module inside python 3.7
and got and error that module "_queue" is missing.
I did not find anything related to such module inside the Setup file.
Then I found this module in the github and manually add
New submission from Igor Nowicki :
Consider we have big XML file and we can't load it all into memory. We use then
`iterparse` function from XML.etree.ElementTree module to parse it element by
element.
Problem is, XML doesn't allow to run this smoothly and starts outputing wrong
Change by Igor :
--
nosy: +i3v
___
Python tracker
<https://bugs.python.org/issue25370>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.pyth
Change by Igor :
--
nosy: +i3v
___
Python tracker
<https://bugs.python.org/issue28053>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.pyth
New submission from Igor Yakovchenko :
ttk.Treeview.insert(... iid=None, ...) method has a check:
if iid:
res = self.tk.call(self._w, "insert", parent, index,
"-id", iid, *opts)
else:
res = self.tk.call(self._w, &qu
Igor Skochinsky added the comment:
Hi Steve,
Thanks for the suggestion! I tried that and while it did not succeed it
gave me an idea of what went wrong last time since it complained about lack
of disk space. I have *not* run the /layout but now that I checked I indeed
had core_d.msi and
New submission from Igor Skochinsky :
Trying to install 3.6.3 on Windows 10 and getting this error.
Repro steps:
1. Download python-3.6.3.exe or python-3.6.3-amd64.exe, run it
2. Select "Customize Installation"
3. Next
4. In Advanced Options, select
[x] Install for all users (n
Igor Filatov added the comment:
Thanks for the reviews, Nick!
--
___
Python tracker
<https://bugs.python.org/issue31351>
___
___
Python-bugs-list mailin
Changes by Igor Filatov :
--
pull_requests: +3720
stage: backport needed -> patch review
___
Python tracker
<https://bugs.python.org/issue31351>
___
___
Python-
Changes by Igor Filatov :
--
keywords: +patch
pull_requests: +3615
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue31351>
___
___
Py
New submission from Igor Filatov:
ensurepip runs pip with a function that discards the result code that pip
produces:
def _run_pip(args, additional_paths=None):
# ...
pip.main(args)
pip.main() is designed not to raise command exceptions. Instead it returns exit
codes
Igor added the comment:
Oren,
1) I might be completely wrong, but, personally, I think about OverflowError vs
ValueError difference like this: if the value couldn't be handled because
method's logic cannot handle it - it's a ValueError; if it could not be handled
because
Igor added the comment:
Oren,
won't the "too large _length_" case vanish, if
https://github.com/python/cpython/pull/3006 would be accepted ?
( http://bugs.python.org/issue16865 )
--
nosy: +i3v
___
Python tracker
<http
Changes by Igor :
--
nosy: +i3v
___
Python tracker
<http://bugs.python.org/issue16865>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.pyth
Igor Kozyrenko (ikseek) added the comment:
So is it by design?
cgitb library fails to create report if there are links to exceptions based on
OSError on the stack because it tries to enumerate all it's attributes.
--
___
Python tracker
New submission from Igor Kozyrenko (ikseek):
If I enumerate attributes on OSError instance with dir
dir(OSError())
I see an 'characters_written' attribute (which is supposed to be defined on
BlockingIOError according to docs).
If I try to access it
getattr(OSError(), 'characters_
Changes by Igor :
--
nosy: +i3v
___
Python tracker
<http://bugs.python.org/issue17560>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.pyth
New submission from Igor:
Hi! I'm a newbie, both in this community and with Python. I downloaded Python
today (March 22, 2017, version 3.6.1) and as I was following a tutorial on how
to build my first program (the classical Hello World) with Python, the IDLE
window closed and my Mac s
New submission from Igor Kudrin:
It looks like resolving https://bugs.python.org/issue20160 didn't fix all the
issues. When a large struct is used as a parameter, a reference to the object
itself is passed to the function, not a reference to a temporary copy, as it is
required in
New submission from Igor Skochinsky:
It's somewhat my fault but I think it's not such an uncommon scenario.
I had installed 2.7.10 x64 some time ago into C:\Python27_64 but then had to
delete it to save space. Rather foolishly instead of using the uninstaller, I
just trashed the dir
Igor Pashev added the comment:
Yes, Victor. Your patch works. All os tests are passed :-)
--
___
Python tracker
<http://bugs.python.org/issue22258>
___
___
Pytho
Igor Pashev added the comment:
errno is 25 (#define ENOTTY 25 /* Inappropriate ioctl for device */)
It does not make sense to me to call unworkable ioctl() each time before other
methods :-)
I would consider adding a configure check for working ioctl() (but it won't
work for
New submission from Igor Pashev:
I've found on illumos-based OS that under some conditions python is unable to
open any files because set_inheritable() fails. This happens even when building
python when it cannot find (open) _sysconfigdata.py.
The problem is that set_inheritable()
New submission from Igor Bronshteyn:
Quoting Collin Winter:
"I'd like there to be an Else() node for If.orelse, While.orelse, etc. My
motivation is that I need the lineno and col_offset values of the "else"
statement for a code-coverage utility; as it is, I have to find the
Igor Franchuk added the comment:
Confirmed as fixed at least in Python 3.3.5
Successfully compiled at
Linux gw 2.6.33-gentoo #1 SMP Mon Mar 8 23:29:59 MSK 2010 i686 Intel(R)
Pentium(R) D CPU 3.00GHz GenuineIntel GNU/Linux
--
versions: -Python 3.4
Changes by Igor Pashev :
Removed file: http://bugs.python.org/file34952/dyson-socketmodule-ifindex.patch
___
Python tracker
<http://bugs.python.org/issue21287>
___
___
Igor Pashev added the comment:
Related to http://bugs.python.org/issue8852
--
___
Python tracker
<http://bugs.python.org/issue21287>
___
___
Python-bugs-list m
Changes by Igor Pashev :
Added file: http://bugs.python.org/file34961/dyson-socketmodule-ifindex.patch
___
Python tracker
<http://bugs.python.org/issue21287>
___
___
Pytho
Changes by Igor Franchuk :
--
type: -> compile error
___
Python tracker
<http://bugs.python.org/issue20065>
___
___
Python-bugs-list mailing list
Unsubscrib
New submission from Igor Franchuk:
Missing CAN_RAW check in Python 3.3.3
Python 3.3.3 assumes that if AF_CAN is defined then CAN_RAW is defined as well.
It won't assemble with old kernels.
Either an additional check for CAN_RAW should be applied in the configuration
script or Python
Igor Skochinsky added the comment:
Just had this issue when using networkx (which imports uuid). One keyword that
would help visibility is R6034 (the runtime error number). A couple of reports
related to this:
https://projects.blender.org/tracker/index.php?func=detail&aid=27666
Igor Sobreira added the comment:
Updated patch to restore previous value of ._top_level_dir on discover() done.
And added a unit test.
--
Added file:
http://bugs.python.org/file26458/restore_top_level_dir_to_previous_value.patch
___
Python tracker
Igor Sobreira added the comment:
My previous patch is incorrect, talking to voidspace on irc self._top_leve_dir
should be reverted to it's previous value
"so when discover is called the original value should be stored, then discovery
done, and then the original restored"
I&
Igor Sobreira added the comment:
Hello. I've attached a patch to cleanup self._top_level_dir in the end of
discover(). Is that the expected behavior or I'm on the wrong track?
--
keywords: +patch
nosy: +igorsobreira
Added file: http://bugs.python.org
Igor Bronshteyn added the comment:
I mean, that AST generated with standard "ast.parse" has nodes with confusing
positions. Sorry for the first indistinct message.
--
___
Python tracker
<http://bugs.python.o
New submission from Igor Bronshteyn :
Consider the following snippet (the file is attached):
code starts
a = [1, 3.14, 'abc', u'XYZ']
b = (1, 3.14, 'abc', u'XYZ')
c = {1 : 3.14, 'abc' : u'XYZ'}
= code ends =
The lis
Changes by Igor :
--
keywords: +patch
Added file: http://bugs.python.org/file20958/1.patch
___
Python tracker
<http://bugs.python.org/issue11361>
___
___
Pytho
New submission from Igor :
Hello!
I see some 'skip' in test_os.py
@unittest.skip("subprocesses aren't inheriting CTRL+C property")
def test_CTRL_C_EVENT(self):
I think, problem with calling SetConsoleCtrlHandler(NULL,0) in parent process,
New submission from Igor Mikushkin :
I think in second case struct size should be 53.
In [31]: struct.calcsize('ihhi35scc')
Out[31]: 49
In [32]: struct.calcsize('ihhi35scci')
Out[32]: 56
--
components: Library (Lib)
messages: 94379
nosy: igor.mikushkin
severity:
Igor do Valle Campbell <[EMAIL PROTECTED]> added the comment:
You have to put the glut32.dll in Windows/system32 folder.
You can get glut32.dll here:
http://www.xmission.com/~nate/glut/glut-3.7.6-bin.zip
extract the glut32.dll to the Windows/system32 folder and voila.
-
New submission from Igor <[EMAIL PROTECTED]>:
I have discovered the following behaviour in 2.5, which I cannot explain:
>>> try:
... raise ValueError("foo")
... except object:
... print "aiee!"
...
Traceback (most recent call last):
File ""
55 matches
Mail list logo