Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(1827) | Call(1827) | Derive(0) | Import(0)
L.reverse() -- reverse *IN PLACE*
src/l/i/libphilo-HEAD/python/examples/alpha_services/freq_json_service.py libphilo(Download)
byte_offset = hit[6] offsets = list(hit[6:]) offsets.reverse() new_obj = hit[:(field_depth + 1)] if new_obj != obj_id:
src/d/j/django-admin-report-HEAD/example/lib/html5lib/inputstream.py django-admin-report(Download)
def unget(self, chars): self.updatePosition() if chars: l = list(chars) l.reverse()
src/b/i/bitey-0.0/examples/mandel/png.py bitey(Download)
def reversed(l): l = list(l) l.reverse() for x in l: yield x
src/b/i/bitey-HEAD/examples/mandel/png.py bitey(Download)
def reversed(l): l = list(l) l.reverse() for x in l: yield x
src/l/i/libphilo-HEAD/python/examples/services/freq_service.py libphilo(Download)
byte_offset = hit[6] offsets = list(hit[6:]) offsets.reverse() doc_id = hit[0]
src/l/i/libphilo-HEAD/python/examples/services/freq_json_service.py libphilo(Download)
byte_offset = hit[6] offsets = list(hit[6:]) offsets.reverse() doc_id = hit[0] if doc_id > last_doc:
src/l/i/libphilo-HEAD/python/examples/old_examples/agg_test_new.py libphilo(Download)
byte_offset = hit[6] offsets = list(hit[6:]) offsets.reverse() doc_id = hit[0]
src/l/i/libphilo-HEAD/python/examples/alpha_services/freq_service.py libphilo(Download)
byte_offset = hit[6] offsets = list(hit[6:]) offsets.reverse() doc_id = hit[0]
src/d/j/djangosampler-0.6.0/djangosampler/views.py djangosampler(Download)
total_queries = query_qs.count() queries = query_qs.order_by(sort) queries = queries.reverse() queries = queries[start_offset:start_offset+PAGE_SIZE] queries = list(queries)
src/d/j/djangosampler-HEAD/djangosampler/views.py djangosampler(Download)
total_queries = query_qs.count() queries = query_qs.order_by(sort) queries = queries.reverse() queries = queries[start_offset:start_offset+PAGE_SIZE] queries = list(queries)
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next