Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 This directory contains google.protobuf module version 2.6.0 build 0. | |
| 2 | |
| 3 It has been manually renamed to protobuf26. This is needed to avoid conflicts | |
| 4 with a built-in google.protobuf module found on many developer machines. The | |
| 5 long-term solution to this problem, however, should be virtualenv. Unfortunately | |
| 6 due to limited time and lack of experience, it was not a reasonable short-term | |
| 7 solution. | |
| 8 | |
| 9 If you need to update this package, please make sure that you replace all | |
| 10 the references to google.protobuf in the package itself with protobuf26, e.g. | |
| 11 | |
| 12 from google.protobuf import text_format | |
| 13 import google.protobuf | |
| 14 | |
| 15 becomes | |
| 16 | |
| 17 from protobuf26 import text_format | |
| 18 import protobuf26 | |
|
pgervais
2015/06/03 17:51:34
Please file a ticket to request a virtualenv in de
Sergiy Byelozyorov
2015/06/03 18:00:31
Done.
| |
| OLD | NEW |