9758001d02e2a96bd6da9db74cde358b2593c455,setup.py,,read_to_rst,#,13
Before Change
try:
import pypandoc
//print "Warning in installation: For rst formatting in pypi, consider installing pypandoc for conversion"
return pypandoc.convert("README.md", "rst")
except:
return read(fname)
version_dummy = {}
After Change
try:
import pypandoc
//print "Warning in installation: For rst formatting in pypi, consider installing pypandoc for conversion"
with open("README.rst", "w") as f:
f.write(pypandoc.convert("README.md", "rst"))
except:
return read(fname)
version_dummy = {}
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 4
Instances
Project Name: SheffieldML/GPy
Commit Name: 9758001d02e2a96bd6da9db74cde358b2593c455
Time: 2015-09-10
Author: ibinbei@gmail.com
File Name: setup.py
Class Name:
Method Name: read_to_rst
Project Name: PacktPublishing/Deep-Reinforcement-Learning-Hands-On
Commit Name: d7be73a4eb0f2458752978eb58153202b6bfc2e7
Time: 2018-03-13
Author: max.lapan@gmail.com
File Name: ch18/telegram-bot.py
Class Name: PlayerBot
Method Name: _read_leaderboard
Project Name: UFAL-DSG/tgen
Commit Name: e4eac21828a6b9037d314266908f4ba083b1940e
Time: 2015-12-15
Author: odusek@ufal.mff.cuni.cz
File Name: tgen/parallel_percrank_train.py
Class Name:
Method Name: dump_ranker
Project Name: suavecode/SUAVE
Commit Name: b60c2b7edaac23593f3ea59bbe91b7b10a864ec9
Time: 2015-03-07
Author: tmomose@stanford.edu
File Name: trunk/SUAVE/Methods/Aerodynamics/AVL/write_geometry.py
Class Name:
Method Name: write_geometry