Python Forum
How to convert a string "<... object at POINTER>" to an object?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to convert a string "<... object at POINTER>" to an object?
#4
(Aug-08-2020, 07:17 PM)ndc85430 Wrote: What? I'm not really understanding why you want to store the object as a string. Can't you use the pickle module?

Thank you, but I cannot use the pickle module because there is an error message "TypeError: can't pickle PyCapsule objects". What I did is as below:
import pickle

class CLASS:
    ...
    def Func():
        p = pickle.dumps(self.drawHandler) # I'm trying to pickle a function handler.
        ...
        unpickle = pickle.loads(p)
I give up on this method, the next method is how to make the kind of global static object? I don't know if it's an off-topic if I ask it here, but I will Google it now.
Reply


Messages In This Thread
RE: How to convert a string "<... object at POINTER>" to an object? - by mandaxyz - Aug-08-2020, 07:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Printing out incidence values for Class Object SquderDragon 3 382 Apr-01-2024, 07:52 AM
Last Post: SquderDragon
  This result object does not return rows. It has been closed automatically dawid294 6 1,358 Mar-30-2024, 03:08 AM
Last Post: NolaCuriel
  TypeError: cannot pickle ‘_asyncio.Future’ object Abdul_Rafey 1 525 Mar-07-2024, 03:40 PM
Last Post: deanhystad
  How can I pause only one object? actualpy 1 413 Feb-01-2024, 07:43 PM
Last Post: deanhystad
  error in class: TypeError: 'str' object is not callable akbarza 2 607 Dec-30-2023, 04:35 PM
Last Post: deanhystad
Question Chain object that have parent child relation.. SpongeB0B 10 1,225 Dec-12-2023, 01:01 PM
Last Post: Gribouillis
Bug TypeError: 'NoneType' object is not subscriptable TheLummen 4 831 Nov-27-2023, 11:34 AM
Last Post: TheLummen
  TypeError: 'NoneType' object is not callable akbarza 4 1,149 Aug-24-2023, 05:14 PM
Last Post: snippsat
  [NEW CODER] TypeError: Object is not callable iwantyoursec 5 1,520 Aug-23-2023, 06:21 PM
Last Post: deanhystad
  AttributeError: '_tkinter.tkapp' object has no attribute 'username' Konstantin23 4 1,901 Aug-04-2023, 12:41 PM
Last Post: Konstantin23

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020