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










0















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'









share|improve this question

















  • 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
















0















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'









share|improve this question

















  • 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














0












0








0








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'









share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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













  • 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













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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived