aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/autograph/pyct/static_analysis/live_values.py
Commit message (Collapse)AuthorAge
* Remove the deprecated created and IS_LOCAL abstractions from activity analysis.Gravatar Dan Moldovan2018-10-09
| | | | PiperOrigin-RevId: 216446750
* Fix regression that caused xrange to be ignored.Gravatar Dan Moldovan2018-10-04
| | | | PiperOrigin-RevId: 215844450
* Use weakrefs where absolutely safe to do so, in order to reduce the number ↵Gravatar Dan Moldovan2018-09-21
| | | | | | of circular references. Replace unnecessary OrderedDict with a regular dict. PiperOrigin-RevId: 213982097
* Include the print function in the list of special functions - its name is ↵Gravatar Dan Moldovan2018-09-20
| | | | | | not found in the namespace in Python 3. PiperOrigin-RevId: 213879813
* Move AutoGraph to core. This CL moves the entirety of the code base, keeping ↵Gravatar Dan Moldovan2018-09-11
the frontend autograph module in contrib for backward compatibility. Certain files, like notebooks and the readme file may be referenced from the outside, so a copy of those is kept as well. In addition, the notebooks subdirectory of examples is also kept in contrib because the extension the build file relies on is not available in the PIP package. PiperOrigin-RevId: 212543067