Obteniendo el texto completo del tweet de "user_timeline" con tweepy

Estoy usando tweepy para buscar tweets de la línea de tiempo de un usuario usando el script incluidoaquí. Sin embargo, los tweets vienen truncados:

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_key, access_secret)
api = tweepy.API(auth)
new_tweets = api.user_timeline(screen_name = screen_name,count=200, full_text=True)

Devoluciones:

Status(contributors=None, 
     truncated=True, 
     text=u"#Hungary's new bill allows the detention of asylum seekers 
          & push backs to #Serbia. We've seen push backs before so\u2026 https:// 
          t.co/iDswEs3qYR", 
          is_quote_status=False, 
          ...

Es decir, para algunosi, new_tweets[i].text.encode("utf-8") aparece como

#Hungary's new bill allows the detention of asylum seekers & 
push backs to #Serbia. We've seen push backs before so…https://t.co/
iDswEs3qYR

Donde el... en este último reemplaza el texto que normalmente se mostraría en Twitter.

¿Alguien sabe cómo puedo anulartruncated=True para obtener el texto completo de mi solicitud?

Respuestas a la pregunta(2)

Su respuesta a la pregunta