This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Florijan Hamzic
Recipients Florijan Hamzic, Valentin.Lorentz, davin, ezio.melotti, mikaela, sbt
Date 2016-10-17.15:40:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476718827.74.0.84304692324.issue21429@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

i have a similiar issue:

i have a really simple scenario

Callee:
```
@classmethod
def MoveDataToOtherSide(cls, model)
data = {
            "FirstName": model.FirstName,
            "LastName": model.LastName,
            "Email": model.Email,
            "Pass": model.Password,
            "Images": cls.LoadUserImages(model.ID)
        }

        p = Process(target=UserService.MoveProfileToOtherSide, kwargs={"data": data})
        p.start()
```

Processeee
```
@staticmethod
    def MoveProfileToOtherSide(data): requests.get("https://mySecretUrl.de", params={"token": "secBlub", "data": encode(data, unpicklable=False)})
```

I think it has something todo with stdout but i have no clue how i could debug this further, unfortunetely. 

The Application around this functionality (UserService) is cherrypy.
History
Date User Action Args
2016-10-17 15:40:27Florijan Hamzicsetrecipients: + Florijan Hamzic, ezio.melotti, Valentin.Lorentz, sbt, mikaela, davin
2016-10-17 15:40:27Florijan Hamzicsetmessageid: <1476718827.74.0.84304692324.issue21429@psf.upfronthosting.co.za>
2016-10-17 15:40:27Florijan Hamziclinkissue21429 messages
2016-10-17 15:40:27Florijan Hamziccreate