Changes between Version 16 and Version 17 of Python3
- Timestamp:
- 2020-09-11T18:13:28Z (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python3
v16 v17 18 18 == How to choose a module to port == 19 19 20 TBD, something involving core abstractions first, then dependency graph topological traversal. 20 * We started by porting `allmydata.util`, since it's necessary for other packages. That's mostly done. 21 * Itamar is currently porting `allmydata.storage`. 21 22 22 At the moment we're focusing on just porting `allmydata.util`, since it's necessary for other packages. 23 Some things you can take on: 24 25 * `allmydata.node` is pretty standalone. 26 * Start the more complex process (see below re spaghetti dependencies) on `allmydata.immutable`. 27 * Some other standalone module if you can find one. 23 28 24 29 == The porting process, big picture == … … 40 45 41 46 === Porting a specific Python file === 47 48 **Zeroth**, file a new ticket in milestone "Python 3", assign it to yourself. 42 49 43 50 **First**, add explicit byte or unicode annotations for strings where needed.