The ListProperty is a list of python objects, plain and simple. If I understand your question correctly what you are describing is a list of Hiscores within the HiscoreTable
scores = db.ListProperty(Hiscore)
For sorting you would have to use sorted to sort the list by score before writing the HiscoreTable entity. What it would be doing is the equivalent of pickling whatever Hiscore objects you add to the list, and retrieving those same pickled version on subsequent queries. Essentially it would be a list of snapshots of previous Hiscore rankings states, not the current state. If your intention is to cache the scores for a period of time then that would work - but you might consider using memcache instead.
Alternately, in order to reference the actual Hiscore entities you could do this
scores = db.ListProperty(db.Key)
and retrieve the Hiscore's by their keys. Again you would want to use sorted to sort the list before writing it which would store a snapshot of rankings when the HiscoreTable was written.
But if what you require are absolutely up to date score-tables per country then you will have to query the Hiscore model directly every time.
query.filter('countryCode =', somecode).order('-score').fetch(limit=100)