Commit Graph

506 Commits

Author SHA1 Message Date
Satwik Kansal 5467a67f0f Add minor example
Adds an example to illustrate absence of
Increment and Decrement operators in Python.

Related to https://github.com/satwikkansal/wtfpython/issues/30
2017-09-06 16:22:59 +05:30
Satwik Kansal 8304eb7643 package.json: Upgrade to 1.2.2 2017-09-06 16:22:59 +05:30
Satwik Kansal 0492157664 Update Example: Same operands, different story!
* Clarifies that the difference between `a+=b` and `a=a+b` is not universal
2017-09-06 01:43:46 -07:00
Beni Cherniavsky-Paskin 2155d917df italic literal *`op=`* 2017-09-06 11:30:25 +03:00
Beni Cherniavsky-Paskin c95ba00160 a+=b vs a=a+b : clarify the difference is not universal
Made the text say it depends on class, and rest of explanation talk of lists, not objects.
2017-09-06 09:12:37 +03:00
Satwik Kansal 330cb601cf Fix typo
Changes "f" to "t" in the output.
2017-09-05 06:44:34 -07:00
Wiktor Żurawik 57fb82428b Fix typo in the "For what?" example 2017-09-05 12:27:29 +02:00
Satwik Kansal 753d0b6aae Add example: For what?
* Adds a new example
* Merges an existing example "Loop variable resilient to changes"
  in the explanation of this example

Closes https://github.com/satwikkansal/wtfpython/issues/23
2017-09-05 00:52:19 +05:30
Satwik Kansal 7e93e0cb91 Update example: Deleting a list while iterating over it
* Corrects the explanation for `del` keyword.

Fixes https://github.com/satwikkansal/wtfpython/issues/16
2017-09-05 00:05:07 +05:30
Satwik Kansal d4a60ac9d0 Update example: Time for more Hash brownies!
Remove previously ambiguous explnanation and
add more explanatory and clear explanation.

Fixes https://github.com/satwikkansal/wtfpython/issues/10
2017-09-04 23:39:23 +05:30
Satwik Kansal 8216f02618 Update exmaple: Counting the booleans
* Changes name to "What's wrong with booleans"
* Add another snippet to the example.
2017-09-04 23:22:13 +05:30
Satwik Kansal ad6898e6f4 Fix pylint and flake8 warnings.
* Mark TabError as noqa to silence linters on Python 3
* Disable mixed_indentation warning for pylint
2017-09-04 10:22:03 -07:00
cclauss 68c675bb8e # noqa: E999 # pylint: disable=mixed-indentation 2017-09-04 19:19:16 +02:00
Satwik Kansal 6abfb50fc6 Add example: Not Knot!
Related to https://github.com/satwikkansal/wtfpython/issues/1
2017-09-04 22:31:48 +05:30
cclauss c0a8151153 # noqa: E999 # pylint: disable=bad-indentation 2017-09-04 18:42:42 +02:00
cclauss a6ce6259fa Mark TabError as noqa to silence linters on Python 3 2017-09-04 14:56:27 +02:00
Satwik Kansal 39480cc579 Fix typo
Assign "2" to match remainder of class attribute example
2017-09-04 03:24:14 -07:00
Jason A. Ribeiro a42587ffb7 Assign "2" to match remainder of class attribute example 2017-09-03 19:26:36 -04:00
Satwik Kansal 426cb0c2cb Use consistent "Explanation" headings.
Changes headings with just "#### Explanation:" to "#### 💡 Explanation"
Fixes https://github.com/satwikkansal/wtfpython/issues/22
2017-09-03 01:31:41 +05:30
Satwik Kansal fe050b8198 Fix typos
Fixes 3 spelling mistakes.
2017-09-02 11:44:15 -07:00
Chandan Rai 31f617d4aa corrected typos 2017-09-02 17:39:50 +05:30
Satwik Kansal 9d0bba8c4c Fix typo
Changes Example to Example
2017-09-01 19:11:57 -07:00
Sebastian Krzyszkowiak 8cf1148a41 Fix typo 2017-09-01 23:05:03 +01:00
Satwik Kansal 424b240acc Fix typo
Changes "shelll" to "shell".
2017-09-02 00:07:23 +05:30
Satwik Kansal 71b6e2812d Update Table Of Contents 2017-09-01 23:58:59 +05:30
Satwik Kansal 1b8d9ef06a Add new example: Counting the booleans
* Moves the "Booleans are subclass of int" example
from "Minor Ones" list to a new example.
2017-09-01 22:47:05 +05:30
Satwik Kansal 82bbded3da Change the position of the notes.
* Moves the position of the information regarding the
Python version so that it is not skipped by the readers.
* Also moves the position of the instructions for reproducing the
"Skipping lines" example to just below the output.

Closes https://github.com/satwikkansal/wtfPython/issues/17
2017-09-01 22:24:47 +05:30
Satwik Kansal 046663efff Fix wrong output
Fixed wrong output of `isinstance(False, float)`
2017-09-01 09:34:54 -07:00
Jeppe Pihl bd05e9e723 Fixed wrong output of `isinstance(False, float)`
Fixed the output of `isinstance(False, float)` and changed `False` to `True` to match `isinstance(True, int)`
2017-09-01 15:13:09 +02:00
Satwik Kansal f5565ee615 package.json: Upgrade to 1.2.1
* Changes version from 1.2.0 to 1.2.1
* Publish to npm
2017-09-01 16:29:33 +05:30
Satwik Kansal 4ae910baf3 Update Table Of Contents 2017-09-01 16:28:00 +05:30
Satwik Kansal 82b4ea20b2 Fix typos
* Changes "bord" to "board"
* Changes "some)func" to "some_func"
2017-09-01 02:36:46 -07:00
Eyal Zekaria 43a9c84bac Fix a couple of typos 2017-09-01 11:28:17 +02:00
Satwik Kansal ba238cfa82 Add example: Loop variable resilient to changes
Closes https://github.com/satwikkansal/wtfPython/issues/11
2017-09-01 14:50:13 +05:30
Satwik Kansal 1a79352cc3 Update contributing section
* Link to CONTRIBUTING.md in the "Contributing" section
* Add couple of lines in CONTRIBUTING.md
2017-09-01 14:05:28 +05:30
Satwik Kansal 6cd006cd48 Skipping Lines: Add instructions to reproduce the exmaple 2017-09-01 13:58:39 +05:30
Satwik Kansal 86715d646e Add statement in output
Adds None==None statement in explicit string casting
example.
2017-09-01 13:52:18 +05:30
Satwik Kansal 8e69c66246 Correct ambiguous statement
* Removes the statement "So if the is operator returns True
then the equality is definitely True" because it contradicts
in case of float('nan')
* Adds a small example with explaination for the same.
2017-09-01 13:48:24 +05:30
Satwik Kansal d91404dc69 Fix typo
Changes 0 to 0.0 in the output of explicit
string typecasting example.

Fixes https://github.com/satwikkansal/wtfPython/issues/13
2017-09-01 04:32:43 +05:30
Satwik Kansal 3c97d1b980 Changes "Outupt" to "Output" 2017-08-31 15:56:31 -07:00
Satwik Kansal 3256b04e73 Merge branch 'master' into patch-1 2017-08-31 15:55:24 -07:00
Satwik Kansal 3cdc9acbf3 Add new example
Closes https://github.com/satwikkansal/wtfPython/issues/9
2017-09-01 03:55:43 +05:30
Bengt Van De Velde 7df7637716 Fix typo. 2017-09-01 00:23:26 +02:00
Satwik Kansal 8ae68f11b6 Add new example
Closes https://github.com/satwikkansal/wtfPython/issues/9
2017-09-01 03:51:26 +05:30
Satwik Kansal f76511c15b Add .gitattributes 2017-09-01 03:20:13 +05:30
Satwik Kansal 526bcd1109 Fix typo
Changes disperancy to discrepancy
2017-08-31 12:15:00 -07:00
Giovanni Funchal 08471cc6d5 Fix typo disperancy->discrepancy 2017-08-31 19:55:34 +01:00
Satwik Kansal 722c5b83ba Fix typos
Corrects typos in CONTRIBUTING.md.
Fixes #4
2017-08-31 11:01:32 -07:00
Alessandro Cuzzocrea c42110cf6b Fixes typo in CONTRIBUTING.md
ading -> adding

Also rogue character string "dcd"
2017-08-31 19:52:18 +02:00
Satwik Kansal e7ce91da86 Fix typo in example
Fix the True assignment example.
2017-08-31 10:47:19 -07:00