Getting a Thread Exception in kivy randomly The Next CEO of Stack OverflowHow do I check whether a file exists without exceptions?How to randomly select an item from a list?local variable 'sresult' referenced before assignmentCatch multiple exceptions in one line (except block)Selenium: FirefoxProfile exception Can't load the profilePython threads - number of arguments ErrorPython UnboundLocalError using threadstensorflow: segmentation error in multiple threadsPython MySQL - SELECT in loop and INSERT with threadingToo many files open error on app using Kafka
MessageLevel in QGIS3
Why do remote companies require working in the US?
Elegant way to replace substring in a regex with optional groups in Python?
How do I transpose the 1st and -1th levels of an arbitrarily nested array?
Written every which way
Make solar eclipses exceedingly rare, but still have new moons
How do we know the LHC results are robust?
What does "Its cash flow is deeply negative" mean?
Won the lottery - how do I keep the money?
Indicator light circuit
Is it my responsibility to learn a new technology in my own time my employer wants to implement?
Do I need to enable Dev Hub in my PROD Org?
How do scammers retract money, while you can’t?
Is there an analogue of projective spaces for proper schemes?
What is ( CFMCC ) on ILS approach chart?
Would a galaxy be visible from outside, but nearby?
Novel about a guy who is possessed by the divine essence and the world ends?
Is it possible to search for a directory/file combination?
What flight has the highest ratio of time difference to flight time?
Is it professional to write unrelated content in an almost-empty email?
What benefits would be gained by using human laborers instead of drones in deep sea mining?
What connection does MS Office have to Netscape Navigator?
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Return the Closest Prime Number
Getting a Thread Exception in kivy randomly
The Next CEO of Stack OverflowHow do I check whether a file exists without exceptions?How to randomly select an item from a list?local variable 'sresult' referenced before assignmentCatch multiple exceptions in one line (except block)Selenium: FirefoxProfile exception Can't load the profilePython threads - number of arguments ErrorPython UnboundLocalError using threadstensorflow: segmentation error in multiple threadsPython MySQL - SELECT in loop and INSERT with threadingToo many files open error on app using Kafka
I keep getting this thread Exception randomly during the start of my kivy App (I would say this exception occurs with a 1% chance)
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
File "/usr/lib/python2.7/threading.py", line 763, in run
self.__target(*self.__args, **self.__kwargs)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 324, in _thread_run
process([l_points[x] for x in _changes])
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 198, in process
touch = MTDMotionEvent(device, tid, args)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/motionevent.py", line 287, in __init__
self.depack(args)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 50, in depack
self.sx = args['x']
KeyError: 'x'
python raspberry-pi kivy
add a comment |
I keep getting this thread Exception randomly during the start of my kivy App (I would say this exception occurs with a 1% chance)
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
File "/usr/lib/python2.7/threading.py", line 763, in run
self.__target(*self.__args, **self.__kwargs)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 324, in _thread_run
process([l_points[x] for x in _changes])
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 198, in process
touch = MTDMotionEvent(device, tid, args)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/motionevent.py", line 287, in __init__
self.depack(args)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 50, in depack
self.sx = args['x']
KeyError: 'x'
python raspberry-pi kivy
1
Could you edit your question to show the code the is causing this error? Even better yet would be a sample that we could cut and paste and run for ourselves!
– Erik
Mar 8 at 16:06
Unfortunately, I have no Idea wich sample is causing this error, and my code is around 2000 lines...
– Julie96
Mar 8 at 16:10
Well you say it happens during start up, right? And it looks like it's either related to some sort of threading that you're doing or maybe the kivy install itself (reinstall could fix? Just a guess though). Are you doing anything right on start up with threads?
– Erik
Mar 8 at 16:14
Does this happen if you run a simple testapp instead of your complicated one?
– inclement
Mar 8 at 23:14
I'm not doing anything thread related during the start of my app (neither later in my app btw), I will try to reinstall kivy. @inclement, As i said this error appears once in a while, so it's difficult to reproduce it with a test app
– Julie96
Mar 13 at 9:49
add a comment |
I keep getting this thread Exception randomly during the start of my kivy App (I would say this exception occurs with a 1% chance)
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
File "/usr/lib/python2.7/threading.py", line 763, in run
self.__target(*self.__args, **self.__kwargs)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 324, in _thread_run
process([l_points[x] for x in _changes])
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 198, in process
touch = MTDMotionEvent(device, tid, args)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/motionevent.py", line 287, in __init__
self.depack(args)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 50, in depack
self.sx = args['x']
KeyError: 'x'
python raspberry-pi kivy
I keep getting this thread Exception randomly during the start of my kivy App (I would say this exception occurs with a 1% chance)
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
File "/usr/lib/python2.7/threading.py", line 763, in run
self.__target(*self.__args, **self.__kwargs)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 324, in _thread_run
process([l_points[x] for x in _changes])
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 198, in process
touch = MTDMotionEvent(device, tid, args)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/motionevent.py", line 287, in __init__
self.depack(args)
File "/usr/local/lib/python2.7/dist-packages/kivy/input/providers/mtdev.py", line 50, in depack
self.sx = args['x']
KeyError: 'x'
python raspberry-pi kivy
python raspberry-pi kivy
asked Mar 8 at 14:11
Julie96Julie96
208
208
1
Could you edit your question to show the code the is causing this error? Even better yet would be a sample that we could cut and paste and run for ourselves!
– Erik
Mar 8 at 16:06
Unfortunately, I have no Idea wich sample is causing this error, and my code is around 2000 lines...
– Julie96
Mar 8 at 16:10
Well you say it happens during start up, right? And it looks like it's either related to some sort of threading that you're doing or maybe the kivy install itself (reinstall could fix? Just a guess though). Are you doing anything right on start up with threads?
– Erik
Mar 8 at 16:14
Does this happen if you run a simple testapp instead of your complicated one?
– inclement
Mar 8 at 23:14
I'm not doing anything thread related during the start of my app (neither later in my app btw), I will try to reinstall kivy. @inclement, As i said this error appears once in a while, so it's difficult to reproduce it with a test app
– Julie96
Mar 13 at 9:49
add a comment |
1
Could you edit your question to show the code the is causing this error? Even better yet would be a sample that we could cut and paste and run for ourselves!
– Erik
Mar 8 at 16:06
Unfortunately, I have no Idea wich sample is causing this error, and my code is around 2000 lines...
– Julie96
Mar 8 at 16:10
Well you say it happens during start up, right? And it looks like it's either related to some sort of threading that you're doing or maybe the kivy install itself (reinstall could fix? Just a guess though). Are you doing anything right on start up with threads?
– Erik
Mar 8 at 16:14
Does this happen if you run a simple testapp instead of your complicated one?
– inclement
Mar 8 at 23:14
I'm not doing anything thread related during the start of my app (neither later in my app btw), I will try to reinstall kivy. @inclement, As i said this error appears once in a while, so it's difficult to reproduce it with a test app
– Julie96
Mar 13 at 9:49
1
1
Could you edit your question to show the code the is causing this error? Even better yet would be a sample that we could cut and paste and run for ourselves!
– Erik
Mar 8 at 16:06
Could you edit your question to show the code the is causing this error? Even better yet would be a sample that we could cut and paste and run for ourselves!
– Erik
Mar 8 at 16:06
Unfortunately, I have no Idea wich sample is causing this error, and my code is around 2000 lines...
– Julie96
Mar 8 at 16:10
Unfortunately, I have no Idea wich sample is causing this error, and my code is around 2000 lines...
– Julie96
Mar 8 at 16:10
Well you say it happens during start up, right? And it looks like it's either related to some sort of threading that you're doing or maybe the kivy install itself (reinstall could fix? Just a guess though). Are you doing anything right on start up with threads?
– Erik
Mar 8 at 16:14
Well you say it happens during start up, right? And it looks like it's either related to some sort of threading that you're doing or maybe the kivy install itself (reinstall could fix? Just a guess though). Are you doing anything right on start up with threads?
– Erik
Mar 8 at 16:14
Does this happen if you run a simple testapp instead of your complicated one?
– inclement
Mar 8 at 23:14
Does this happen if you run a simple testapp instead of your complicated one?
– inclement
Mar 8 at 23:14
I'm not doing anything thread related during the start of my app (neither later in my app btw), I will try to reinstall kivy. @inclement, As i said this error appears once in a while, so it's difficult to reproduce it with a test app
– Julie96
Mar 13 at 9:49
I'm not doing anything thread related during the start of my app (neither later in my app btw), I will try to reinstall kivy. @inclement, As i said this error appears once in a while, so it's difficult to reproduce it with a test app
– Julie96
Mar 13 at 9:49
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55064970%2fgetting-a-thread-exception-in-kivy-randomly%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55064970%2fgetting-a-thread-exception-in-kivy-randomly%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Could you edit your question to show the code the is causing this error? Even better yet would be a sample that we could cut and paste and run for ourselves!
– Erik
Mar 8 at 16:06
Unfortunately, I have no Idea wich sample is causing this error, and my code is around 2000 lines...
– Julie96
Mar 8 at 16:10
Well you say it happens during start up, right? And it looks like it's either related to some sort of threading that you're doing or maybe the kivy install itself (reinstall could fix? Just a guess though). Are you doing anything right on start up with threads?
– Erik
Mar 8 at 16:14
Does this happen if you run a simple testapp instead of your complicated one?
– inclement
Mar 8 at 23:14
I'm not doing anything thread related during the start of my app (neither later in my app btw), I will try to reinstall kivy. @inclement, As i said this error appears once in a while, so it's difficult to reproduce it with a test app
– Julie96
Mar 13 at 9:49