GitXplorerGitXplorer
a

pygame_event_repr

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
47e22deb624c0f98287ae43929d64184a65eee48

Edited readme (markdown syntax) on github.com and made code changes locally.

aakaptur committed 12 years ago
Unverified
e90a9ea43a7cd2ff291494f6154b505b893889a7

only single inheritance, so we only need __base__, not __bases__

aakaptur committed 12 years ago
Unverified
e5eb3a93cd8863d7ac54196311f4b055f71f0bcf

rejigger

aakaptur committed 12 years ago
Unverified
eba9caafd2dba30baf9167dbbcfd52bc82bd6362

Update README.md

aakaptur committed 12 years ago
Unverified
723d2689075388805875dfcebdb8b83bae1fd616

Update README.md

aakaptur committed 12 years ago
Unverified
759241771c4842532276dd577232a0cb047f1fbe

Update README.md

aakaptur committed 12 years ago

README

The README file for this repository.

An exploration of objects in python via duplication of the way Pygame prints events.

A simple call to 'print event' yields a very useful, information-dense printout. An example: <Event(4-MouseMotion {'buttons': (0, 0, 0), 'pos': (15, 0), 'rel': (-304, -239)})>

Python's built-in methods and attributes of objects make creation of this sort of repr function a snap, as demonstrated here.