Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm reading a pcap file using the rdpcap function:

s = rdpcap(pcap)

I'd like to know how to reverse s: it should be a list, but I tried with:

rev_s = s.reverse()

and it doesn't work: it gives me the SyntaxError: invalid syntax error.

Can anyone help me, please?

Thanks

share|improve this question
What does type(s) return? – Jan-Philip Gehrcke May 23 '12 at 8:46
It gives me <type 'instance'>. I found a syntax error, but now, it gives me this error: Traceback (most recent call last): File "myscript.py", line 100, in myfunction for pkt in s.reverse(): TypeError: 'NoneType' object is not iterable I know that s is not None. – auino May 23 '12 at 8:56
s = None hence the TypeError you're getting. If s was a string you could use .reverse() or [::-1] to step it backwards. I'd recommend loading up a file that contains data, then doing a dir(var_name) on it to see what functions it supports. – Christian Witts May 23 '12 at 9:08
As what you're trying to achieve works just fine (cf. my answer below), you have other mistakes in your code. If you do not mange to resolve them by yourself, you can show more code in your question. – Jan-Philip Gehrcke May 23 '12 at 9:14

1 Answer

up vote 1 down vote accepted

For me, this works:

>>> a = rdpcap("test.pcap")
>>> b = a.reverse()
>>> c = a[::-1]

(you can also use the slice notation to create a reversed copy of the list)

share|improve this answer
This worked: revs = s[::-1]. Thanks! – auino May 23 '12 at 9:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.