summaryrefslogtreecommitdiff
path: root/lib/git/objects/utils.py
Commit message (Collapse)AuthorAgeFilesLines
* added Object.data_stream property allowing to stream object data ↵Sebastian Thiel2009-10-221-0/+18
| | | | directly.Considering the implementation of the git commnd which temporarily keeps it in a cache, it doesnt make a huge diffence as the data is kept in memory while streaming. Only good thing is that it is in a different process so python will never see it if done properly
* Object can now create objects of the proper type in case one attempts to ↵Sebastian Thiel2009-10-151-1/+0
| | | | create an object directly - this feature is used in several places now, allowing for additional type-checking
* All times are not stored as time_struct, but as simple int to consume less ↵Sebastian Thiel2009-10-151-0/+19
| | | | | | memory time imports cleaned up and mostly removed as they were not required (anymore)
* unified name of utils module, recently it was named util and utils in ↵Sebastian Thiel2009-10-131-0/+36
different packages