Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[clojure kernel] fix problem with result serialization (lazy sequence) #5147

Closed
jaroslawmalekcodete opened this issue Apr 10, 2017 · 2 comments
Assignees

Comments

@jaroslawmalekcodete
Copy link
Contributor

No description provided.

@jaroslawmalekcodete jaroslawmalekcodete self-assigned this Apr 10, 2017
konstantinTarletski pushed a commit that referenced this issue Apr 20, 2017
scottdraves pushed a commit that referenced this issue Apr 20, 2017
* issue #5216 "infinite loop from returning function in groovy"
this is revert for issue #5147 "lazySeq"

* issue #5216 "infinite loop from returning function in groovy" -- test commented out.
@scottdraves scottdraves reopened this Apr 20, 2017
@scottdraves
Copy link
Contributor

printing lazy sequence should work.
also, re-enable those tests.

@scottdraves
Copy link
Contributor

; lazy infinite sequence with recursive definition
(def fib-seq-lazy 
  ((fn rfib [a b] 
     (lazy-seq (cons a (rfib b (+ a b)))))
   0 1))
(take 20 fib-seq-lazy)

results in

clojure.lang.LazySeq@7c3704da

but it should should the actual sequence.

jaroslawmalekcodete added a commit that referenced this issue Jul 31, 2017
scottdraves pushed a commit that referenced this issue Jul 31, 2017
michalgce added a commit that referenced this issue Aug 4, 2017
* origin/master: (25 commits)
  #5695 fix legend position in png/svg export (#5785)
  add e2e tests for Kotlin notebook (#5786)
  #5675 Problems with EasyForm Python API  (#5790)
  #5779 Change the interrupt msg. (#5789)
  jitpack, npm and pypi badges added (#5791)
  cancelExecution when interupt action (#5776)
  #5685 set table font to Lato (#5771)
  #5758 Allow extra whitespaces for magic commands. (#5773)
  add tests for javaTutorial.ipynb notebook (#5774)
  fix indentation
  #5658: no tooltip as default (#5775)
  jarek/5766: display tablesaw as TableDisplay (#5772)
  #5097 logo icons for beakerx languages (#5769)
  #5070 fix the adjustRedraw error of tableDisplay (#5750)
  #5147: add jvm-repr (#5764)
  close #5756 by linking to doc from readme
  add tests for ClojureTutorial (#5763)
  #5178 fix heatmap width too low (#5762)
  Add test for classpath with wildcards resetting environment multiple times (#5760)
  #5746 Skip runtime version check for Kotlin. (#5759)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants