The Wayback Machine - http://web.archive.org/web/20201113103513/https://github.com/topics/python?l=java
Skip to content
#

Python

python logo

Python is a dynamically typed programming language designed by Guido van Rossum. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.

Here are 1,392 public repositories matching this topic...

graemerocher
graemerocher commented Oct 2, 2019

Currently register looks like:

   private static <T> void register(Map<T, T> substitutions, T annotated, T original, T target) {
        if (annotated != null) {
            guarantee(!substitutions.containsKey(annotated) || substitutions.get(annotated) == original || substitutions.get(annotated) == target, "Already registered: %s", annotated);
            substitutions.put(annotated,
wetneb
wetneb commented Nov 12, 2020

The phonetic GREL function does not validate its second argument, the phonetic encoding, and silently falls back to metaphone.

For instance, "open refine".phonetic("metaphone3") evaluates to "APNRFN" and so does "open refine".phonetic(undefined_value) or "open refine".phonetic(null).

In these last two cases, we should instead throw an error, similar to the one we get with `"open re

DS-Algo-Point

Created by Guido van Rossum

Released February 20, 1991

Organization
python
Website
www.python.org
Wikipedia
Wikipedia

Related Topics

language ruby
You can’t perform that action at this time.